/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #1a1a2e; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== VARIABLES ===== */
:root {
  --accent:   #0E5DA8;
  --accent-hover: #0E5DA8cc;
  --dark-footer: #0c3040;
  --dark-footer-bottom: #0a2a38;
  --text-muted: #8ab0b8;
  --white: #ffffff;
  --nav-bg: rgba(255,255,255,0.08);
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 30, 42, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* --- Logo --- */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.logo-img {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-logo .logo-img {
  height: 120px;
}
.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  text-transform: uppercase;
}

/* --- Nav --- */
.main-nav { display: flex; align-items: center; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: block;
  padding: 8px 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-list > li > a:hover,
.nav-list > li > a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.nav-list > li > a.active {
  border: 1px solid rgba(255,255,255,0.45);
  background: transparent;
}

/* Dropdown arrow */
.has-dropdown > a::after {
  content: '';
  display: inline-block;
  margin-left: 6px;
  width: 8px; height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  vertical-align: middle;
  transition: transform 0.2s;
}

/* Dropdown menu */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 180px;
  background: #0c3040;
  border-radius: 8px;
  padding: 8px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s, padding-left 0.2s;
}
.dropdown li a:hover { color: var(--accent); padding-left: 26px; }

/* --- Header Phone Button --- */
.btn-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 6px;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.btn-phone:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-phone svg { flex-shrink: 0; }

/* Mobile hamburger (hidden by default) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s;
}

/* ===== HERO ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0   rgba(0,191,165,0.55); }
  70%  { box-shadow: 0 0 0 18px rgba(0,191,165,0); }
  100% { box-shadow: 0 0 0 0   rgba(0,191,165,0); }
}
@keyframes counterUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  background-color: #0d1f2d;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Modern layered overlay — dark left anchor + vignette top/bottom */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.28) 0%, transparent 28%, transparent 65%, rgba(0,0,0,0.48) 100%),
    linear-gradient(108deg, rgba(4,14,28,0.93) 0%, rgba(7,24,46,0.80) 38%, rgba(12,48,90,0.55) 68%, rgba(14,93,168,0.22) 100%);
  z-index: 1;
}

/* Subtle accent glow behind text */
.hero-slide::before {
  content: '';
  position: absolute;
  left: -10%;
  top: 15%;
  width: 55%;
  height: 70%;
  background: radial-gradient(ellipse at 30% 50%, rgba(14,93,168,0.18) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 48px 80px;
  display: grid;
  grid-template-columns: 1fr 30%;
  gap: 48px;
  align-items: center;
}

/* --- Left Column --- */
.hero-left {
  display: flex;
  flex-direction: column;
  max-width: 580px;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  background: rgba(14,93,168,0.30);
  border: 1px solid rgba(80,160,255,0.38);
  border-radius: 20px;
  padding: 6px 16px;
  margin-bottom: 22px;
  width: fit-content;
  backdrop-filter: blur(4px);
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #5ab4ff;
  box-shadow: 0 0 7px #5ab4ff;
  flex-shrink: 0;
}

/* Hero stat card (right column) */
.hero-stat-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 36px 44px;
  text-align: center;
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.1);
}
.hero-stat-number {
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}
.hero-stat-label {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.68);
  margin-top: 10px;
  letter-spacing: 0.04em;
}

/* Slider controls */
.hero-controls {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(8px);
}
.hero-btn:hover {
  background: rgba(255,255,255,0.22);
  transform: scale(1.08);
}

.hero-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.32);
  border: none;
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
  padding: 0;
}
.hero-dot.active {
  width: 28px;
  border-radius: 4px;
  background: rgba(255,255,255,0.92);
}

/* Progress bar */
.hero-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.12);
  z-index: 10;
}
.hero-progress-bar {
  height: 100%;
  background: var(--accent);
  width: 0;
}

/* Slide-in animations scoped to active slide */
.hero-slide.active .hero-badge {
  animation: fadeInUp 0.6s ease 0.1s both;
}
.hero-slide.active .hero-left {
  animation: fadeInLeft 0.8s ease 0.05s both;
}
.hero-slide.active .hero-title {
  animation: fadeInUp 0.7s ease 0.3s both;
}
.hero-slide.active .hero-desc {
  animation: fadeInUp 0.7s ease 0.45s both;
}
.hero-slide.active .btn-hero {
  animation: fadeInUp 0.7s ease 0.6s both;
}
.hero-slide.active .hero-right {
  animation: fadeInRight 0.8s ease 0.2s both;
}
.hero-slide.active .hero-stat-card {
  animation: fadeInRight 0.8s ease 0.35s both;
}

/* Hero responsive */
@media (max-width: 900px) {
  .hero-slider { height: auto; min-height: 100vh; }
  .hero-slide  { position: relative; min-height: 100vh; }
  .hero-slide:not(.active) { display: none; }
  .hero-inner  { grid-template-columns: 1fr; padding: 100px 28px 120px; }
  .hero-right  { display: none; }
}
@media (max-width: 480px) {
  .hero-inner { padding: 90px 20px 110px; }
  .hero-stat-number { font-size: 3.5rem; }
  .hero-controls { bottom: 28px; }
}

/* Watch Video */
.watch-video {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  width: fit-content;
}
.play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--white);
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  animation: pulse-ring 2.2s ease-out 1.2s infinite;
  transition: transform 0.2s;
}
.watch-video:hover .play-btn {
  transform: scale(1.1);
  animation: none;
  box-shadow: 0 6px 28px rgba(0,191,165,0.45);
}
.watch-video-label { letter-spacing: 0.02em; }

/* --- Right Column --- */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}
.hero-title {
  font-size: clamp(2rem, 3.2vw, 2.875rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.hero-desc {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  margin-bottom: 34px;
  max-width: 460px;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 6px;
  width: fit-content;
  align-self: flex-start;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.01em;
}
.btn-hero:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,191,165,0.35);
}

/* ===== LOGO SLIDER ===== */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.logo-slider-section {
  background: #ffffff;
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid #eeece7;
  border-bottom: 1px solid #eeecea;
}

.logo-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.logo-track:hover { animation-play-state: paused; }

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: default;
}
.logo-item svg { flex-shrink: 0; opacity: 0.7; }
.logo-item img {
  width: 160px;
  height: 80px;
  object-fit: contain;
  display: block;
  background: #ffffff;
  border: 1px solid #e8e6e2;
  border-radius: 10px;
  padding: 16px 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  filter: grayscale(30%);
  transition: filter 0.3s, box-shadow 0.3s, transform 0.3s;
}
.logo-item img:hover {
  filter: grayscale(0%);
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 100px 32px;
  background: #fff;
}
.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left text */
.about-title {
  font-size: clamp(1.6rem, 2.8vw, 2.25rem);
  font-weight: 700;
  color: #0d2e3a;
  line-height: 1.25;
  margin-bottom: 20px;
}
.about-desc {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #5a6e75;
  margin-bottom: 32px;
  max-width: 440px;
}

/* Feature checklist */
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin-bottom: 36px;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0d2e3a;
}
.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  flex-shrink: 0;
  font-style: normal;
}

.btn-about {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-about:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,191,165,0.3);
}

/* Right image */
.about-image-wrap {
  position: relative;
  border-radius: 12px;
  overflow: visible;
}
.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* Award badge */
.award-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: #fff;
  border-radius: 50%;
  width: 130px;
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  text-align: center;
  padding: 12px;
}
.award-wreath {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  pointer-events: none;
}
.award-year {
  font-size: 0.6rem;
  color: #c8962a;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 18px;
}
.award-title-text {
  font-size: 1rem;
  font-weight: 800;
  color: #0d2e3a;
  line-height: 1.1;
  letter-spacing: 0.04em;
}
.award-sub {
  font-size: 0.55rem;
  color: #888;
  line-height: 1.4;
  margin-top: 2px;
}

/* About responsive */
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-img { height: 320px; }
}

/* ===== COUNTER / STATS SECTION ===== */
.counter-section {
  background: #0b3542;
  padding: 80px 32px;
}
.counter-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

/* Header row */
.counter-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.counter-heading {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.counter-subtext {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
}
.counter-subtext strong {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

/* Cards row */
.counter-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.counter-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.25s, transform 0.25s;
}
.counter-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
}
.card-line {
  display: block;
  width: 36px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 4px;
}
.card-number {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.card-suffix {
  color: var(--accent);
  font-weight: 700;
}
.card-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
}

/* Counter responsive */
@media (max-width: 900px) {
  .counter-header { grid-template-columns: 1fr; gap: 24px; }
  .counter-cards  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .counter-cards  { grid-template-columns: 1fr; }
}

/* ===== SERVICES SECTION ===== */
.services-section {
  background: linear-gradient(160deg, #f0f4f8 0%, #e8edf3 100%);
  padding: 90px 32px;
}
.services-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

/* Heading */
.services-heading {
  text-align: center;
}
.services-heading h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.125rem);
  font-weight: 700;
  color: #0d2e3a;
  line-height: 1.3;
}

/* Cards grid */
.services-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* Base card */
.svc-card {
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(14,93,168,0.14);
}

/* List card */
.svc-card--list {
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

/* Card header band */
.svc-card-header {
  background: linear-gradient(120deg, #0b3a6e 0%, #0E5DA8 100%);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Icon */
.svc-icon {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 10px;
  backdrop-filter: blur(4px);
}

/* Title */
.svc-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

/* Bullet list body */
.svc-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 20px 28px 28px;
  list-style: none;
}
.svc-list li {
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.55;
  padding: 9px 0 9px 20px;
  position: relative;
  border-bottom: 1px solid #f0f2f5;
}
.svc-list li:last-child { border-bottom: none; }
.svc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

/* Services responsive */
@media (max-width: 768px) {
  .services-cards { grid-template-columns: 1fr; }
  .svc-card-header { padding: 20px 20px; }
  .svc-list { padding: 16px 20px 20px; }
}

/* ===== LISTED CLIENTS SECTION ===== */
.clients-section {
  background: #0b3a6e;
  padding: 90px 32px;
  position: relative;
  overflow: hidden;
}
.clients-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.clients-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}
.clients-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 52px;
  position: relative;
  z-index: 1;
}
.clients-heading {
  text-align: center;
}
.clients-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 5px 16px;
  margin-bottom: 16px;
}
.clients-heading h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 12px;
}
.clients-heading p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
}

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

/* Card */
.client-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  backdrop-filter: blur(6px);
}
.client-card:hover {
  background: rgba(255,255,255,0.11);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.25);
}

/* Number + tag row */
.client-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}
.client-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  letter-spacing: -0.03em;
  flex-shrink: 0;
  flex-grow: 1;
}
.client-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7ab4e8;
  background: rgba(14,93,168,0.35);
  border: 1px solid rgba(14,93,168,0.5);
  border-radius: 20px;
  padding: 3px 10px;
  white-space: nowrap;
}
.client-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
}
.client-desc {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  flex-grow: 1;
}
.client-address {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
  margin-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 10px;
}
.client-address svg { flex-shrink: 0; margin-top: 1px; }

/* Responsive */
@media (max-width: 1024px) {
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .clients-grid { grid-template-columns: 1fr; }
  .clients-section { padding: 60px 20px; }
}

/* ===== JOB-BASIS CLIENTS + TEAM ===== */
.job-clients-section {
  background: #f0f5f0;
  background: linear-gradient(160deg, #eef4f0 0%, #e4ede8 100%);
  padding: 90px 32px;
}
.job-clients-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 72px;
}

/* Shared heading style for this section */
.jc-heading {
  margin-bottom: 36px;
}
.jc-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2d6a4f;
  background: rgba(45,106,79,0.10);
  border: 1px solid rgba(45,106,79,0.2);
  border-radius: 20px;
  padding: 5px 16px;
  margin-bottom: 14px;
}
.jc-heading h2 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 700;
  color: #0d2e3a;
  line-height: 1.25;
}

/* ---- Job clients list ---- */
.jc-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.jc-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #ffffff;
  border: 1px solid #d6e4db;
  border-left: 4px solid #2d6a4f;
  border-radius: 10px;
  padding: 18px 20px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.jc-item:hover {
  box-shadow: 0 6px 24px rgba(45,106,79,0.12);
  transform: translateY(-3px);
}
.jc-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(45,106,79,0.18);
  line-height: 1;
  flex-shrink: 0;
  min-width: 32px;
}
.jc-details { display: flex; flex-direction: column; gap: 5px; }
.jc-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0d2e3a;
  line-height: 1.35;
}
.jc-address {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-size: 0.8rem;
  color: #5a7a6a;
  line-height: 1.5;
}
.jc-address svg { flex-shrink: 0; margin-top: 2px; }
.jc-website {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: #2d6a4f;
  font-weight: 500;
  transition: color 0.2s;
}
.jc-website:hover { color: #1a4a33; }

/* ---- Team grid ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.team-card {
  background: #ffffff;
  border: 1px solid #d6e4db;
  border-radius: 12px;
  padding: 20px 16px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.team-card:hover {
  box-shadow: 0 8px 28px rgba(45,106,79,0.13);
  transform: translateY(-4px);
}
.team-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2d6a4f 0%, #40916c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.team-avatar span {
  font-size: 1.375rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}
.team-info { display: flex; flex-direction: column; gap: 3px; }
.team-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0d2e3a;
  line-height: 1.3;
}
.team-role {
  font-size: 0.78rem;
  color: #2d6a4f;
  font-weight: 500;
}
.team-quals {
  font-size: 0.73rem;
  color: #7a9a8a;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .jc-list { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .job-clients-section { padding: 60px 20px; }
}

/* ===== PUBLICATION SECTION ===== */
.pub-section {
  background: #ffffff;
  padding: 80px 32px;
}
.pub-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.pub-heading {
  font-size: 1.375rem;
  font-weight: 700;
  color: #cc0000;
  text-decoration: underline;
  letter-spacing: 0.01em;
}
.pub-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0d2e3a;
  text-decoration: underline;
  line-height: 1.4;
}
.pub-book-wrap {
  margin-top: 8px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.18);
  max-width: 520px;
  width: 100%;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pub-book-wrap:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.28);
}
.pub-book-img {
  width: 100%;
  height: auto;
  display: block;
  transition: filter 0.3s;
}
.pub-book-wrap:hover .pub-book-img {
  filter: brightness(0.75);
}

/* Zoom icon overlay */
.pub-zoom-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.pub-zoom-icon svg {
  color: #ffffff;
  background: rgba(14,93,168,0.85);
  border-radius: 50%;
  padding: 10px;
  width: 56px;
  height: 56px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.pub-book-wrap:hover .pub-zoom-icon { opacity: 1; }

/* Lightbox */
.pub-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.pub-lightbox.active {
  opacity: 1;
  pointer-events: all;
}
.pub-lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  object-fit: contain;
  display: block;
}
.pub-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff;
  transition: background 0.2s;
}
.pub-lightbox-close:hover { background: rgba(255,255,255,0.25); }

/* ===== SHARED HEADING ===== */
.section-heading-center {
  text-align: center;
  margin-bottom: 8px;
}
.section-heading-center h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.125rem);
  font-weight: 700;
  color: #0d2e3a;
  line-height: 1.3;
}

/* ===== CASE STUDIES ===== */
.cases-section {
  background: #fff;
  padding: 90px 32px;
}
.cases-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Base case card */
.case-card {
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  min-height: 260px;
  position: relative;
  transition: transform 0.3s;
}
.case-card:hover { transform: translateY(-4px); }

/* Dark image card */
.case-card--dark {
  background-size: cover;
  background-position: center;
  background-color: #0b3542;
  align-items: flex-end;
}
.case-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8,42,54,0.90) 0%,
    rgba(0,60,70,0.60) 60%,
    rgba(0,50,60,0.25) 100%
  );
  z-index: 1;
}
.case-card--dark .case-content {
  position: relative;
  z-index: 2;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Light card */
.case-card--light {
  background: #fff;
  border: 1px solid #e8e6e0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  flex-direction: row;
  align-items: stretch;
}
.case-card--light .case-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  justify-content: center;
}
.case-img-wrap {
  width: 180px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 0 12px 12px 0;
}
.case-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Client label */
.case-client {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.75);
}
.case-card--light .case-client { color: #5a6e75; }
.case-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* Case titles */
.case-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.case-title--dark { color: #0d2e3a; }

/* Case desc */
.case-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
}
.case-desc--dark { color: #5a6e75; }

/* Read More */
.case-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 4px;
  transition: gap 0.2s;
}
.case-link:hover { gap: 10px; }

/* Cases responsive */
@media (max-width: 768px) {
  .cases-grid { grid-template-columns: 1fr; }
  .case-img-wrap { display: none; }
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: #fff;
  padding: 64px 32px 80px;
  border-top: 1px solid #eee;
}
.testimonials-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.testi-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.testi-heading {
  font-size: 1.625rem;
  font-weight: 700;
  color: #0d2e3a;
}
.testi-quote-icon {
  color: var(--accent);
  opacity: 0.85;
  flex-shrink: 0;
}

/* Slides */
.testi-slide {
  display: none;
  flex-direction: column;
  gap: 28px;
  animation: fadeInUp 0.4s ease both;
}
.testi-slide.active { display: flex; }

.testi-text {
  font-size: clamp(1rem, 1.6vw, 1.175rem);
  font-weight: 500;
  color: #0d2e3a;
  line-height: 1.75;
  font-style: normal;
}

/* Author */
.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testi-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #ccc;
}
.testi-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0d2e3a;
}
.testi-role {
  font-size: 0.8125rem;
  color: #7a8e95;
}

/* Nav buttons */
.testi-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.testi-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.testi-btn:hover { background: var(--accent-hover); transform: scale(1.08); }

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: #0b3542;
  min-height: 340px;
  display: flex;
  align-items: center;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(0,60,75,0.35) 0%,
    rgba(8,42,54,0.78) 45%,
    rgba(8,42,54,0.90) 100%
  );
  z-index: 1;
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 64px 32px;
  display: flex;
  justify-content: center;
}
.cta-content {
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
.cta-title {
  font-size: clamp(1.4rem, 2.4vw, 1.875rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.cta-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 6px;
  width: fit-content;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  margin: 0 auto;
}
.btn-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,191,165,0.35);
}

/* CTA responsive */
@media (max-width: 768px) {
  .cta-inner { justify-content: flex-start; }
  .cta-content { max-width: 100%; }
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
  background: #f5f4ef;
  padding: 64px 32px;
}
.newsletter-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.newsletter-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a2e35;
  margin-bottom: 10px;
}
.newsletter-text p {
  font-size: 0.9375rem;
  color: #5a6e75;
}
.newsletter-form {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  min-width: 380px;
}
.newsletter-form input[type="email"] {
  flex: 1;
  border: none;
  outline: none;
  padding: 16px 20px;
  font-size: 0.9375rem;
  color: #333;
  background: transparent;
}
.newsletter-form input[type="email"]::placeholder { color: #aaa; }
.newsletter-form button {
  padding: 16px 28px;
  background: var(--accent);
  color: var(--white);
  border: none;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--accent-hover); }

/* ===== FOOTER ===== */
.site-footer { background: var(--dark-footer); color: rgba(255,255,255,0.75); }

.footer-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 32px 56px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr 1.4fr;
  gap: 48px;
}

/* Footer Brand Col */
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.footer-brand .logo-text { font-size: 1.2rem; }
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 260px;
}

/* Social Icons */
.social-links { display: flex; gap: 10px; }
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  transition: background 0.2s, transform 0.2s;
}
.social-links a:hover { background: var(--accent-hover); transform: translateY(-2px); }
.social-links svg { width: 16px; height: 16px; }

/* Footer Columns */
.footer-col h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s, padding-left 0.2s;
}
.footer-col ul li a:hover { color: var(--accent); padding-left: 4px; }

/* Contact Col */
.footer-contact-item { margin-bottom: 20px; }
.footer-contact-item strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-contact-item span, .footer-contact-item a {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.footer-contact-item a:hover { color: var(--accent); }

/* Footer Bottom Bar */
.footer-bottom {
  background: var(--dark-footer-bottom);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom-inner p {
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.footer-bottom-inner a { color: var(--accent); }
.footer-bottom-inner a:hover { text-decoration: underline; }

/* ===== RESPONSIVE ===== */
/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Hero */
.cp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center bottom;
  background-color: #0b3542;
  overflow: hidden;
}
.cp-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.28) 0%, transparent 28%, transparent 65%, rgba(0,0,0,0.48) 100%),
    linear-gradient(108deg, rgba(4,14,28,0.93) 0%, rgba(7,24,46,0.80) 38%, rgba(12,48,90,0.55) 68%, rgba(14,93,168,0.22) 100%);
  z-index: 1;
}
.cp-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 120px 48px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Form card */
.cp-form-card {
  background: var(--white);
  border-radius: 14px;
  padding: 40px 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

/* ---- Contact Form 7 overrides ---- */
.cp-form-card .wpcf7 { width: 100%; }
.cp-form-card .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cp-form-card .wpcf7-form p {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cp-form-card .wpcf7-form label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}
.cp-form-card .wpcf7-form input[type="text"],
.cp-form-card .wpcf7-form input[type="email"],
.cp-form-card .wpcf7-form input[type="tel"],
.cp-form-card .wpcf7-form input[type="url"],
.cp-form-card .wpcf7-form input[type="number"],
.cp-form-card .wpcf7-form select,
.cp-form-card .wpcf7-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #e0ddd8;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-family: inherit;
  color: #333;
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
  box-sizing: border-box;
}
.cp-form-card .wpcf7-form input:focus,
.cp-form-card .wpcf7-form textarea:focus,
.cp-form-card .wpcf7-form select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(14,93,168,0.10);
}
.cp-form-card .wpcf7-form textarea { min-height: 130px; }
.cp-form-card .wpcf7-form input[type="submit"] {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  width: auto;
  margin-top: 4px;
  letter-spacing: 0.01em;
  resize: none;
}
.cp-form-card .wpcf7-form input[type="submit"]:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14,93,168,0.28);
}
.cp-form-card .wpcf7-not-valid-tip {
  font-size: 0.78rem;
  color: #e53e3e;
  margin-top: 3px;
}
.cp-form-card .wpcf7-response-output {
  margin: 8px 0 0;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  border: none;
}
.cp-form-card .wpcf7-mail-sent-ok { background: #d1fae5; color: #065f46; }
.cp-form-card .wpcf7-validation-errors,
.cp-form-card .wpcf7-mail-sent-ng { background: #fee2e2; color: #991b1b; }
.cp-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cp-field { display: flex; flex-direction: column; }
.cp-field input,
.cp-field textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1.5px solid #e0ddd8;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-family: inherit;
  color: #333;
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}
.cp-field input::placeholder,
.cp-field textarea::placeholder { color: #aaa; }
.cp-field input:focus,
.cp-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,191,165,0.12);
}
.btn-cp-send {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  width: fit-content;
  margin-top: 4px;
}
.btn-cp-send:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,191,165,0.35);
}

/* Info right */
.cp-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cp-info-title {
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.cp-info-sub {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.72);
  margin-top: -12px;
}

/* Contact items */
.cp-contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}
.cp-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.cp-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cp-item-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.cp-item-value {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
a.cp-item-value:hover { color: var(--accent); }

/* Map */
.cp-map {
  display: block;
  line-height: 0;
}
.cp-map iframe { display: block; }

/* Contact responsive */
@media (max-width: 900px) {
  .cp-hero-inner {
    grid-template-columns: 1fr;
    padding: 110px 32px 60px;
    gap: 40px;
  }
}
@media (max-width: 480px) {
  .cp-form-card { padding: 28px 20px; }
}

/* ============================================
   SERVICES PAGE STYLES
   ============================================ */

/* --- Services Hero --- */
.sp-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-color: #0b3542;
  overflow: hidden;
}
.sp-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.28) 0%, transparent 28%, transparent 65%, rgba(0,0,0,0.48) 100%),
    linear-gradient(108deg, rgba(4,14,28,0.93) 0%, rgba(7,24,46,0.80) 38%, rgba(12,48,90,0.55) 68%, rgba(14,93,168,0.22) 100%);
  z-index: 1;
}
.sp-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 120px 48px 80px;
  display: grid;
  grid-template-columns: 28% 1fr;
  gap: 48px;
  align-items: center;
}
.sp-hero-left { display: flex; flex-direction: column; gap: 8px; }
.sp-stat-number {
  font-size: 4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.sp-stat-suffix { color: var(--accent); }
.sp-stat-label { font-size: 0.9375rem; color: rgba(255,255,255,0.72); letter-spacing: 0.02em; }

.sp-hero-right { display: flex; flex-direction: column; gap: 16px; }
.sp-hero-title {
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.sp-hero-desc {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  max-width: 600px;
}

/* --- Services Grid --- */
.sp-grid-section {
  background: #fff;
  padding: 80px 48px 90px;
}
.sp-grid-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.sp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Service card */
.sp-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-color: #0b3542;
  transition: transform 0.3s;
}
.sp-card:hover { transform: translateY(-5px); }

.sp-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(6,38,50,0.88) 0%,
    rgba(0,65,78,0.65) 55%,
    rgba(0,50,62,0.30) 100%
  );
  z-index: 1;
  transition: background 0.3s;
}
.sp-card:hover .sp-card-overlay {
  background: linear-gradient(
    160deg,
    rgba(6,38,50,0.92) 0%,
    rgba(0,65,78,0.75) 55%,
    rgba(0,50,62,0.45) 100%
  );
}

.sp-card-content {
  position: relative;
  z-index: 2;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sp-card-icon {
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}
.sp-card-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}
.sp-card-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  max-width: 320px;
}

/* --- Services CTA Banner --- */
.sp-cta {
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: #0b3542;
  min-height: 380px;
  display: flex;
  align-items: center;
}
.sp-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(0,60,75,0.30) 0%,
    rgba(8,42,54,0.72) 42%,
    rgba(8,42,54,0.88) 100%
  );
  z-index: 1;
}
.sp-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 64px 48px;
  display: flex;
  justify-content: center;
}
.sp-cta-content {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
.sp-cta-title {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.sp-cta-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}
.btn-sp-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: transparent;
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.85);
  border-radius: 6px;
  width: fit-content;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  margin: 0 auto;
}
.btn-sp-cta:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Services page responsive */
@media (max-width: 900px) {
  .sp-hero-inner { grid-template-columns: 1fr; padding: 110px 32px 60px; }
  .sp-grid { grid-template-columns: 1fr; }
  .sp-cta-inner { justify-content: flex-start; }
  .sp-cta-content { max-width: 100%; }
}
@media (max-width: 600px) {
  .sp-grid-section { padding: 60px 24px; }
  .sp-card-content { padding: 24px; }
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* --- About Hero --- */
.about-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center center;
  background-color: #0b3542;
  overflow: hidden;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.28) 0%, transparent 28%, transparent 65%, rgba(0,0,0,0.48) 100%),
    linear-gradient(108deg, rgba(4,14,28,0.93) 0%, rgba(7,24,46,0.80) 38%, rgba(12,48,90,0.55) 68%, rgba(14,93,168,0.22) 100%);
  z-index: 1;
}
.about-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 120px 48px 80px;
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 48px;
  align-items: center;
}
.ah-left { display: flex; flex-direction: column; gap: 10px; }
.ah-signature {
  font-family: 'Dancing Script', cursive;
  font-size: 2rem;
  color: rgba(255,255,255,0.85);
  line-height: 1;
}
.ah-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 8px;
}
.ah-role { font-size: 0.875rem; color: rgba(255,255,255,0.65); }
.ah-right { display: flex; flex-direction: column; gap: 18px; }
.ah-title {
  font-size: clamp(1.8rem, 3vw, 2.625rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.ah-desc {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  max-width: 560px;
}

/* --- About Intro --- */
.ai-section { background: #fff; padding: 100px 48px; }
.ai-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ai-title {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 700;
  color: #0d2e3a;
  line-height: 1.25;
  margin-bottom: 18px;
}
.ai-desc {
  font-size: 0.9375rem;
  color: #5a6e75;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 420px;
}
.ai-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.ai-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
.ai-consult-card {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  background: rgba(10,40,52,0.88);
  backdrop-filter: blur(6px);
  padding: 24px 28px;
  border-radius: 0 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ai-consult-text {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}
.ai-consult-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ai-consult-link:hover { gap: 10px; }

/* --- Vision & Mission --- */
.vm-section { background: #fff; padding: 80px 48px 100px; border-top: 1px solid #f0eeea; }
.vm-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.vm-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.vm-img-wrap { border-radius: 14px; overflow: hidden; }
.vm-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

.vm-icon-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.vm-icon-title--center { justify-content: flex-end; }
.vm-icon { color: var(--accent); display: flex; }
.vm-title {
  font-size: clamp(1.4rem, 2.2vw, 1.875rem);
  font-weight: 700;
  color: #0d2e3a;
}
.vm-desc {
  font-size: 0.9375rem;
  color: #5a6e75;
  line-height: 1.8;
}
.vm-desc strong { color: #0d2e3a; }
.vm-desc--center { text-align: right; }

/* --- Video CTA --- */
.vcta-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: #0b3542;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.vcta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,45,58,0.75);
  z-index: 1;
}
.vcta-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.vcta-play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
  margin-bottom: 8px;
  animation: pulse-ring 2.2s ease-out 0.5s infinite;
}
.vcta-play:hover { transform: scale(1.1); animation: none; }
.vcta-title {
  font-size: clamp(1.5rem, 2.6vw, 2.125rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.vcta-desc {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 520px;
}
.btn-vcta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 6px;
  margin-top: 6px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-vcta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,191,165,0.35);
}

/* --- Team Section --- */
.team-section {
  background: linear-gradient(160deg, #f0f4f8 0%, #e8edf3 100%);
  padding: 90px 48px;
}
.team-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.team-header { display: flex; flex-direction: column; gap: 8px; }
.team-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(14,93,168,0.08);
  border: 1px solid rgba(14,93,168,0.15);
  border-radius: 20px;
  padding: 5px 16px;
  width: fit-content;
}
.team-title {
  font-size: clamp(1.4rem, 2.2vw, 1.875rem);
  font-weight: 700;
  color: #0d2e3a;
  margin-bottom: 4px;
}
.team-sub { font-size: 0.9rem; color: #5a6e75; max-width: 520px; }

/* About page team grid (4 cols → 2 → 1) */
.about-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.about-team-card {
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e0e6ec;
  box-shadow: 0 3px 14px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.about-team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(14,93,168,0.13);
}
.about-team-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #e8edf3;
}
.about-team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.about-team-card:hover .about-team-img-wrap img { transform: scale(1.06); }
.about-team-avatar {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0b3a6e 0%, #0E5DA8 100%);
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
}
.about-team-avatar span {
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(255,255,255,0.3);
  line-height: 1;
}
.about-team-info {
  padding: 16px 18px 20px;
  border-top: 3px solid var(--accent);
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex-grow: 1;
}
.about-team-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0d2e3a;
  line-height: 1.3;
}
.about-team-role {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
}
.about-team-quals {
  font-size: 0.75rem;
  color: #7a8e95;
  margin-top: 2px;
}

/* About page responsive */
@media (max-width: 1100px) {
  .about-team-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .about-hero-inner { grid-template-columns: 1fr; padding: 110px 32px 60px; gap: 32px; }
  .ai-inner { grid-template-columns: 1fr; gap: 48px; }
  .ai-img { height: 320px; }
  .vm-row { grid-template-columns: 1fr; gap: 32px; }
  .vm-img { height: 260px; }
  .vm-desc--center { text-align: left; }
  .vm-icon-title--center { justify-content: flex-start; }
  .about-team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-section { padding: 60px 24px; }
}
@media (max-width: 480px) {
  .about-team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .main-nav, .btn-phone { display: none; }
  .hamburger { display: flex; }
  .main-nav.open { display: flex; }
  .main-nav.open {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: #0c3040;
    flex-direction: column;
    padding: 16px;
    align-items: stretch;
  }
  .main-nav.open .nav-list { flex-direction: column; gap: 0; }
  .main-nav.open .nav-list > li > a { padding: 12px 16px; }
  .hero-inner { grid-template-columns: 1fr; padding: 100px 24px 60px; gap: 40px; }
  .hero-left { max-width: 100%; }
  .hero-right { gap: 40px; }
  .hero-title { font-size: 2rem; }
  .newsletter-inner { flex-direction: column; align-items: flex-start; }
  .newsletter-form { min-width: unset; width: 100%; }
  .footer-main { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ===== SCROLL-REVEAL ANIMATIONS ===== */
[data-anim] {
  opacity: 0;
  transition: opacity 0.75s ease, transform 0.75s ease;
  will-change: opacity, transform;
}

[data-anim="fade-up"]    { transform: translateY(44px); }
[data-anim="fade-left"]  { transform: translateX(-44px); }
[data-anim="fade-right"] { transform: translateX(44px); }
[data-anim="zoom-in"]    { transform: scale(0.88); }
[data-anim="fade-in"]    { transform: none; }

[data-anim].is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  [data-anim] { opacity: 1; transform: none; transition: none; }
}
