:root {
  --weg-blue: #003a8f;
  --weg-blue-light: #005eb8;
  --accent-orange: #ff6a00;
  --accent-orange-dark: #e55a00;
  --dark: #0a1a2f;
  --gray: #6b7280;
  --bg: #f4f6f9;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #fff;
  color: #0f172a;
  line-height: 1.6;
}

/* ---------- HEADER ---------- */

header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  max-width: 1200px;
  margin: auto;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  color: var(--weg-blue);
  letter-spacing: 1px;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--weg-blue);
  align-self: flex-start;
  margin-left: auto;
  margin-top: 6px;
  z-index: 1100;
  padding: 6px;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  font-weight: 500;
  color: #1f2937;
  position: relative;
  text-decoration: none;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent-orange);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Keep the orange underline visible for the active/current page */
.nav-links a.active::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
}

/* ---------- MOBILE MENU ---------- */

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  align-self: flex-start;
  margin-top: 6px;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 12px 16px;
    display: none;
    animation: slideDown 0.18s ease forwards;
    box-shadow: 0 8px 20px rgba(2,6,23,0.08);
    z-index: 1050;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 12px 8px;
    border-radius: 6px;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  .logo-img {
    height: 36px;
  }
}

/* ---------- HERO ---------- */

.hero {
  background-image: linear-gradient(120deg, rgba(10,26,47,0.55), rgba(0,94,184,0.35)), url('../assets/service-hero.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat;
  color: #fff;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

.hero-content {
  max-width: 1200px;
  margin: auto;
  animation: fadeUp 0.8s ease forwards;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 44px;
  font-weight: 700;
  max-width: 700px;
}

.hero p {
  margin-top: 16px;
  max-width: 600px;
  opacity: 0.9;
}

/* responsive hero text */
@media (max-width: 900px) {
  .hero h1 { font-size: 36px; }
  .hero p { font-size: 16px; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 14px; }
}

/* ---------- SECTIONS ---------- */

section {
  padding: 80px 20px;
}

/* ---------- WELCOME SECTION ---------- */
.welcome {
  padding: 60px 20px;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.welcome-left {
  animation: fadeInLeft 0.7s ease both;
}

.welcome-left h2 {
  font-size: 32px;
  color: var(--weg-blue);
  margin-bottom: 12px;
}

.welcome-left p {
  color: #1f2937;
  margin-bottom: 18px;
}

.welcome-right {
  border-radius: 15rem 0 0 15rem;
  background-image: url("../assets/welcome.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 45vh;
  right: 0;
  -webkit-transition: opacity .775s linear;
  transition: opacity .775s linear;
  z-index: 1;
  will-change: transform, opacity;
  animation: welcomeSlide 900ms cubic-bezier(.2,.9,.3,1) both;
}

@keyframes welcomeSlide {
  from {
    opacity: 0;
    transform: translateX(80px) scale(0.995);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* ---------- SERVICES SECTION ---------- */
.services {
  padding: 70px 20px;
  min-height: 650px;
}

/* ---------- ABOUT PAGE STYLING ---------- */
.about-main {
  padding: 60px 20px;
}

/* ---------- CLIENTS SECTION ---------- */
.clients {
  padding: 60px 20px;
}
.clients .container {
  text-align: center;
}
.clients-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  align-items: center;
  margin-top: 24px;
}
.client-logo {
  max-width: 120px;
  justify-self: center;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.client-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* ---------- CONTACT PAGE STYLING ---------- */
.contact-info {
  padding: 60px 20px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.map-container {
  border-right: 1px solid var(--weg-blue);
  padding-right: 24px;
}

.map-container img {
  width: 100%;
  max-width: 600px; /* allow bigger image */
  display: block;
  margin: 0 auto;
}

/* remove divider on narrow screens */
@media (max-width: 768px) {
  .map-container {
    border-right: none;
    padding-right: 0;
  }
  .details {
    padding-left: 0;
  }
}
.details h2 {
  margin-bottom: 16px;
  color: var(--weg-blue);
}
.details p {
  margin-bottom: 10px;
  font-size: 1rem;
}
.details p i {
  margin-right: 8px;
  color: var(--accent-orange);
}
.details a {
  color: var(--accent-orange);
  text-decoration: none;
}

.contact-form label {
  display: block;
  margin-top: 16px;
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #d1d5db;
  margin-top: 6px;
}
.contact-form button {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- CONTACT FORM STYLES ---------- */
.contact-form-section {
  padding: 60px 20px;
}
.contact-card {
  max-width: 700px;
  margin: 0 auto;
  background: url('../assets/world-map.jpg') center/cover no-repeat;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(0,0,0,0.08);
  color: #fff;
  position: relative;
}

.contact-card h2 {
  color: var(--accent-orange);
  position: relative;
  padding-left: 1rem;
  margin-bottom: 24px;
}
.contact-card h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent-orange); /* match header color */
  border-radius: 2px;
}

/* overlay to darken background for readability */
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  border-radius: 8px;
  z-index: 0;
}

/* ensure inputs sit above overlay */
.contact-card input,
.contact-card textarea,
.contact-card label,
.contact-card button {
  position: relative;
  z-index: 1;
}
.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.form-group {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
}
.form-group.full { flex: 1 1 100%; }
.form-group label {
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--accent-orange); /* orange labels */
}
.input-icon {
  position: relative;
}
.input-icon i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7280;
}
.input-icon input,
.input-icon textarea {
  padding-left: 36px;
}
.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  margin-bottom: 12px;
}
.contact-card textarea { resize: vertical; }
.contact-card button {
  width: 100%;
  padding: 14px 0;
  font-size: 16px;
  background: var(--weg-blue); /* button blue */
}

@media (max-width: 900px) {
  .form-row { gap: 12px; }
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-intro-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.about-cards {
  gap: 24px;
  margin-top: 40px;
}
.about-card {
  padding: 24px;
}

/* ensure mission/objectives headings are blue */
.about-intro h2 {
  color: var(--weg-blue);
  margin-bottom: 12px;
}
.values {
  margin-top: 50px;
}

/* subtitle under section headings */
.values-subtitle {
  text-align: center;
  color: #475569;
  margin-bottom: 24px;
  font-style: italic;
  font-size: 1rem;
}.values-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.value-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(2,6,23,0.05);
}
.value-card h4 {
  margin-bottom: 8px;
  color: var(--weg-blue);
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* card‑grid variant used on index page */
.services-card-grid .services-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: var(--accent-orange);
  margin-bottom: 0.5rem;
}
.services-card-grid .services-lead {
  font-size: 1.125rem;
  color: #475569;
  text-align: center;
  margin-bottom: 2.5rem;
}
.services-card-grid .services-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.service-card-bg {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 320px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.service-card-bg .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  transition: background 0.3s ease;
}
.service-card-bg:hover .overlay {
  background: rgba(0,0,0,0.6);
}
.service-card-bg .card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  color: #fff;
  z-index: 1;
}
.service-card-bg .service-icon {
  font-size: 2rem;
  color: var(--accent-orange);
  margin-bottom: 8px;
}
.service-card-bg h5 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}
.card-link {
  color: var(--accent-orange);
  text-decoration: none;
  font-size: 0.875rem;
}
.card-link:hover {
  text-decoration: underline;
}

@media (min-width: 640px) {
  .services-card-grid .services-grid {
    grid-template-columns: repeat(2,1fr);
  }
}
@media (min-width: 1024px) {
  .services-card-grid .services-grid {
    grid-template-columns: repeat(3,1fr); /* limit to three columns */
  }
}

.services-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  position: relative;
}

.services-left {
  animation: fadeInLeft 0.7s ease both;
  position: absolute;
  top: 30%;
  left: 40px;
  transform: translateY(-30%);
  z-index: 3;
  width: 38%;
  color: #fff;
  background: rgba(3,7,18,0.45);
  padding: 22px;
  border-radius: 8px;
  text-align: left;
}

.services-left h2 {
  font-size: 30px;
  color: #fff;
  margin-bottom: 12px;
}

.services-left p {
  color: #fff;
  margin-bottom: 18px;
}

.services-right {
  text-align: right;
  animation: fadeInRight 0.7s ease both;
  grid-column: 1 / -1;
}

.services-gallery {
  display: flex;
  gap: 12px;
  width: 100%;
}

.services-gallery img {
  width: calc((100% - 24px) / 3);
  height: 650px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(2,6,23,0.06);
}

@media (max-width: 900px) {
  .services-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .services-right {
    text-align: left;
    grid-column: auto;
  }

  .services-gallery {
    justify-content: flex-start;
  }

  .services-gallery img {
    width: calc((100% - 24px) / 3);
    height: 110px;
  }

  .services-left {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    background: transparent;
    color: #1f2937;
    padding: 0;
  }
}

.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary {
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-orange-dark));
  color: #fff;
}

.btn-primary:hover {
  background: linear-gradient(90deg, var(--accent-orange-dark), #cc4f00);
  transform: scale(1.03);
}

.btn,
.btn-primary {
  transition: background 0.3s ease, transform 0.15s ease;
}

@media (max-width: 900px) {
  .welcome-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .welcome-right {
    text-align: left;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.section-light {
  background: var(--bg);
}

.section-dark {
  background: var(--dark);
  color: #cbd5f5;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.grid {
  display: grid;
  gap: 30px;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* ---------- MILESTONES ---------- */
.milestones {
  padding: 60px 20px;
}

.milestones-inner {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  margin: auto;
}

.milestone {
  text-align: center;
  flex: 1 1 0;
  background: #fff;
  padding: 28px 18px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(2,6,23,0.04);
}

.milestone-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-orange);
  margin-bottom: 8px;
}

.milestone-label {
  font-size: 14px;
  color: #374151;
}

@media (max-width: 900px) {
  .milestones-inner {
    flex-direction: column;
    gap: 16px;
  }

  .milestone {
    width: 100%;
  }
}

/* ---------- CARDS ---------- */

.card {
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.card.show {
  opacity: 1;
  transform: translateY(0);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
}

.card h3 {
  color: var(--weg-blue);
  margin-bottom: 10px;
}

/* ---------- FORMS ---------- */

input,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #d1d5db;
  margin-top: 6px;
}

button {
  margin-top: 16px;
  padding: 12px 24px;
  background: var(--weg-blue);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: var(--weg-blue-light);
}

/* ---------- FOOTER ---------- */

.site-footer {
  background: var(--dark);
  color: #cbd5f5;
  border-top: 4px solid var(--accent-orange);
}

.footer-top {
  padding: 64px 20px 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  align-items: start;
  max-width: 1200px;
  margin: auto;
}

.footer-logo {
  height: 44px;
  width: auto;
  display: block;
  margin-bottom: 14px;
  opacity: 0.95;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(203, 213, 245, 0.6);
  line-height: 1.75;
  max-width: 290px;
  margin-bottom: 20px;
}

/* Social icons row inside footer-brand */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 106, 0, 0.12);
  border: 1px solid rgba(255, 106, 0, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
  font-size: 13px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.footer-social a:hover {
  background: var(--accent-orange);
  color: #fff;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(203, 213, 245, 0.65);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease, gap 0.2s ease;
}

.footer-col ul li a i {
  font-size: 9px;
  color: var(--accent-orange);
  display: inline-block;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.footer-col ul li a:hover {
  color: #fff;
  gap: 12px;
}

.footer-col ul li a:hover i {
  transform: translateX(2px);
}

.footer-contact-list {
  gap: 14px !important;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.fc-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(255, 106, 0, 0.12);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.fc-icon i {
  font-size: 11px;
  color: var(--accent-orange);
  display: inline-block;
  line-height: 1;
}

.footer-contact-list span:not(.fc-icon),
.footer-contact-list a {
  font-size: 13px;
  color: rgba(203, 213, 245, 0.65);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.footer-contact-list a:hover {
  color: var(--accent-orange);
}

.footer-bottom {
  padding: 18px 20px;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(203, 213, 245, 0.42);
  text-align: left;
}

.footer-tagline {
  font-size: 11px;
  color: rgba(255, 106, 0, 0.5);
  letter-spacing: 0.5px;
  text-align: right;
}

@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-tagline {
    text-align: center;
  }
}

/* ----- Explicit icon rendering in contact page containers ----- */
.cdl-icon i,
.cstrip-icon i {
  display: inline-block;
  font-size: 0.9rem;
  line-height: 1;
}

/* ---------- ANIMATIONS ---------- */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal,
.service-section,
.card,
.hero-content,
.services-gallery img,
.services-left {
  opacity: 0;
  transform: translateY(18px) scale(0.995);
  will-change: transform, opacity;
  transition: opacity 520ms cubic-bezier(.2,.9,.3,1), transform 520ms cubic-bezier(.2,.9,.3,1);
}

.reveal.show,
.service-section.show,
.card.show,
.hero-content.show,
.services-gallery img.show,
.services-left.show {
  opacity: 1;
  transform: none;
}

/* small variation for left/right */
.reveal-left { transform: translateX(-20px); }
.reveal-left.show { transform: none; }
.reveal-right { transform: translateX(20px); }
.reveal-right.show { transform: none; }

/* additional directional reveal variants */
.reveal-up { transform: translateY(20px); }
.reveal-up.show { transform: none; }
.reveal-down { transform: translateY(-20px); }
.reveal-down.show { transform: none; }

/* slight scale variation if needed */
.reveal-scale { transform: scale(0.97); }
.reveal-scale.show { transform: none; }

/* Video background for hero */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* fallback background image if video fails */
@media (max-width: 600px) {
  .hero {
    background-image: url('../assets/hero-mobile.jpg');
  }
}
@media (min-width: 601px) and (max-width: 1024px) {
  .hero {
    background-image: url('../assets/hero-tablet.jpg');
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 18, 0.35);
  z-index: 1;
}

/* ---------- DETAILED SERVICES ---------- */
.detailed-services h2 {
  font-size: 32px;
  color: var(--weg-blue);
  margin-bottom: 18px;
}

.detailed-services .lead {
  max-width: 780px;
  margin-bottom: 18px;
  color: #334155;
  font-size: 16px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.service-cards .card {
  padding: 22px;
  min-height: 140px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.service-icon {
  font-size: 34px;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0,94,184,0.08), rgba(255,106,0,0.04));
  border-radius: 12px;
  color: var(--weg-blue);
  box-shadow: 0 8px 20px rgba(2,6,23,0.04);
}

.service-card h3 {
  margin: 0;
  font-size: 20px;
}

.service-card p {
  margin: 0;
  color: #475569;
  line-height: 1.45;
}

.service-card .btn {
  margin-top: auto;
  align-self: stretch;
}

/* Services page specifics */
.services-page .service-section {
  margin-bottom: 28px;
  background: #fff;
  padding: 18px 20px;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(2,6,23,0.04);
}

.services-page .service-section h2 {
  color: var(--weg-blue);
  margin-bottom: 10px;
}

.services-page .service-section ul {
  margin-top: 10px;
  margin-left: 18px;
}

.services-page .note {
  margin-top: 10px;
  font-size: 14px;
  color: var(--gray);
}

.contact-cta {
  margin-top: 18px;
  padding: 18px;
  background: linear-gradient(90deg, rgba(255,106,0,0.06), rgba(229,90,0,0.04));
  border-radius: 8px;
}

/* media for service sections */
.service-media {
  margin-bottom: 12px;
  text-align: center;
}

.service-media img {
  display: inline-block;
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(2,6,23,0.06);
}

@media (min-width: 900px) {
  .service-section {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 20px;
    align-items: start;
  }

  .service-media {
    margin: 0;
    text-align: left;
  }
}

/* ============================================================
   SERVICES PAGE — REDESIGN
   ============================================================ */

/* ----- Hero eyebrow + headline accent ----- */
.hero-eyebrow {
  display: inline-block;
  background: rgba(255, 106, 0, 0.12);
  color: var(--accent-orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 106, 0, 0.28);
  margin-bottom: 20px;
  display: block;
}

.text-accent {
  color: var(--accent-orange);
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-outline-hero {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.btn-outline-hero:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* ----- Hero decorative elements ----- */
.hero-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.06);
}

.deco-1 {
  width: 520px;
  height: 520px;
  right: -130px;
  top: -170px;
  animation: floatCircle 9s ease-in-out infinite;
}

.deco-2 {
  width: 320px;
  height: 320px;
  right: 60px;
  bottom: -90px;
  border-color: rgba(255, 106, 0, 0.12);
  animation: floatCircle 12s ease-in-out infinite reverse;
}

.deco-line {
  position: absolute;
  width: 140%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 106, 0, 0.18) 50%, transparent 100%);
  top: 55%;
  left: -20%;
  transform: rotate(-6deg);
}

@keyframes floatCircle {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-18px) scale(1.015); }
}

/* ----- Stats strip ----- */
.stats-strip {
  background: var(--weg-blue);
  padding: 32px 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: auto;
}

.stat-item {
  text-align: center;
  color: #fff;
  padding: 12px 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item:last-child {
  border-right: none;
}

.stat-value {
  line-height: 1;
  margin-bottom: 6px;
}

.stat-number {
  font-size: 44px;
  font-weight: 800;
  color: var(--accent-orange);
}

.stat-suffix {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-orange);
  vertical-align: top;
  margin-top: 6px;
  display: inline-block;
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .stat-item:nth-child(2n) { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:last-child,
  .stat-item:nth-last-child(2) { border-bottom: none; }
}

/* ----- Section header ----- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
  padding-top: 24px;
}

.section-tag {
  display: inline-block;
  background: rgba(255, 106, 0, 0.07);
  color: var(--accent-orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 106, 0, 0.22);
  margin-bottom: 14px;
  display: block;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--weg-blue);
  margin-bottom: 12px;
}

.section-lead {
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.65;
}

/* ----- Services page container ----- */
.services-page-new {
  padding: 80px 20px;
}

/* ----- Service block (alternating layout) ----- */
.svc-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid #e5e7eb;
  position: relative;
}

.svc-block:last-child {
  border-bottom: none;
}

/* reverse order for even blocks */
.svc-block--reverse .svc-image {
  order: 2;
}

.svc-block--reverse .svc-content {
  order: 1;
}

/* ----- Image side ----- */
.svc-img-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.13);
}

.svc-img-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.svc-img-wrap:hover img {
  transform: scale(1.05);
}

.svc-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 52px;
  height: 52px;
  background: var(--weg-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 58, 143, 0.35);
}

.svc-img-badge i {
  font-size: 1.4rem;
  color: var(--accent-orange);
}

/* ----- Content side ----- */
.svc-number {
  font-size: 80px;
  font-weight: 900;
  color: rgba(0, 58, 143, 0.06);
  line-height: 1;
  margin-bottom: -8px;
  letter-spacing: -3px;
  user-select: none;
}

.svc-content h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--weg-blue);
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 14px;
}

.svc-content h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 3px;
  background: var(--accent-orange);
  border-radius: 2px;
}

.svc-lead {
  color: #475569;
  font-size: 15px;
  margin-bottom: 22px;
  line-height: 1.75;
}

/* ----- Icon list ----- */
.svc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.svc-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #374151;
  padding: 11px 14px;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 3px solid transparent;
  transition: border-left-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.svc-list li:hover {
  border-left-color: var(--accent-orange);
  background: #fff;
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.svc-list-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(0, 58, 143, 0.07);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--weg-blue);
  font-size: 12px;
  margin-top: 1px;
}

/* ----- Note ----- */
.svc-note {
  font-size: 13px;
  color: #64748b;
  background: rgba(0, 58, 143, 0.04);
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.55;
}

.svc-note > i {
  color: var(--weg-blue);
  margin-top: 2px;
  flex-shrink: 0;
}

/* ----- Service CTA button ----- */
.svc-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 6px;
}

.svc-cta-btn i {
  transition: transform 0.2s ease;
}

.svc-cta-btn:hover i {
  transform: translateX(5px);
}

/* ----- Process strip ----- */
.process-strip {
  background: #fff;
  padding: 80px 20px;
  border-top: 1px solid #e5e7eb;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.process-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--weg-blue), var(--weg-blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 28px rgba(0, 58, 143, 0.25);
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover .process-icon {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 58, 143, 0.3);
}

.process-icon i {
  font-size: 1.4rem;
  color: #fff;
}

/* connector line between steps */
.process-connector {
  position: absolute;
  top: 31px;
  left: calc(50% + 32px);
  right: calc(-50% + 32px);
  height: 2px;
  background: linear-gradient(90deg, var(--weg-blue-light), rgba(0, 94, 184, 0.2));
}

.process-connector.last {
  display: none;
}

.process-step h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--weg-blue);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.55;
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .process-connector {
    display: none;
  }
}

@media (max-width: 480px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ----- Services CTA section ----- */
.services-cta {
  background: linear-gradient(135deg, #001f5c 0%, var(--weg-blue) 50%, #002d80 100%);
  padding: 90px 20px;
  position: relative;
  overflow: hidden;
}

.cta-deco {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,106,0,0.08) 0%, transparent 70%);
  top: -250px;
  right: -200px;
  pointer-events: none;
}

.cta-inner {
  max-width: 900px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.cta-text .section-tag {
  text-align: left;
  background: rgba(255, 255, 255, 0.08);
}

.cta-text h2 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  max-width: 440px;
}

.btn-white {
  background: #fff;
  color: var(--weg-blue);
  padding: 15px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

/* ----- Responsive: svc-blocks ----- */
@media (max-width: 900px) {
  .svc-block {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 0;
  }

  .svc-block--reverse .svc-image,
  .svc-block--reverse .svc-content {
    order: unset;
  }

  .svc-img-wrap img {
    height: 280px;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-text p {
    max-width: 100%;
  }

  .cta-text .section-tag {
    display: block;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .svc-number {
    font-size: 56px;
  }

  .svc-content h2 {
    font-size: 22px;
  }
}

/* ----- Staggered list item entrance animation ----- */
@keyframes slideInItem {
  from { opacity: 0; transform: translateX(-14px); }
  to   { opacity: 1; transform: translateX(0); }
}

.svc-block .svc-list li {
  opacity: 0;
}

.svc-block.show .svc-list li {
  animation: slideInItem 0.38s cubic-bezier(0.2, 0.9, 0.3, 1) both;
}

.svc-block.show .svc-list li:nth-child(1) { animation-delay: 0.10s; }
.svc-block.show .svc-list li:nth-child(2) { animation-delay: 0.19s; }
.svc-block.show .svc-list li:nth-child(3) { animation-delay: 0.28s; }
.svc-block.show .svc-list li:nth-child(4) { animation-delay: 0.37s; }
.svc-block.show .svc-list li:nth-child(5) { animation-delay: 0.46s; }

/* More dramatic slide for large svc-block reveals */
.svc-block.reveal-left  { transform: translateX(-40px) scale(0.99); }
.svc-block.reveal-right { transform: translateX(40px)  scale(0.99); }

/* ----- Process step entrance stagger ----- */
@keyframes fadeUpStep {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.process-strip.show .process-step {
  animation: fadeUpStep 0.45s cubic-bezier(0.2, 0.9, 0.3, 1) both;
}

.process-strip.show .process-step:nth-child(1) { animation-delay: 0.05s; }
.process-strip.show .process-step:nth-child(2) { animation-delay: 0.15s; }
.process-strip.show .process-step:nth-child(3) { animation-delay: 0.25s; }
.process-strip.show .process-step:nth-child(4) { animation-delay: 0.35s; }

/* ============================================================
   CONTACT PAGE — REDESIGN
   ============================================================ */

/* ----- Quick-info strip ----- */
.contact-strip {
  background: var(--weg-blue);
  padding: 28px 20px;
}

.contact-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1160px;
  margin: auto;
}

.cstrip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 16px 6px 0;
}

.cstrip-item:last-child {
  border-right: none;
}

.cstrip-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--accent-orange);
}

.cstrip-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2px;
}

.cstrip-value {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}

.cstrip-value a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.cstrip-value a:hover {
  color: var(--accent-orange);
}

@media (max-width: 768px) {
  .contact-strip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .cstrip-item {
    border-right: none;
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .contact-strip-grid {
    grid-template-columns: 1fr;
  }
}

/* ----- Main contact section ----- */
.contact-main {
  padding: 90px 20px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 56px;
  align-items: start;
  max-width: 1100px;
  margin: auto;
}

/* ----- Left info panel ----- */
.contact-panel {
  background: linear-gradient(145deg, var(--weg-blue) 0%, #002172 100%);
  border-radius: 20px;
  padding: 44px 36px;
  color: #fff;
  position: sticky;
  top: 90px;
  box-shadow: 0 24px 56px rgba(0, 33, 114, 0.25);
  overflow: hidden;
}

.contact-panel::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.10) 0%, transparent 70%);
  top: -120px;
  right: -100px;
  pointer-events: none;
}

.panel-header {
  margin-bottom: 36px;
  position: relative;
}

.panel-header .section-tag {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  text-align: left;
  display: inline-block;
}

.panel-header h2 {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin: 14px 0 12px;
  line-height: 1.25;
}

.panel-header p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

/* ----- Contact detail list ----- */
.contact-detail-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.contact-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cdl-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
  font-size: 0.95rem;
  margin-top: 2px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-detail-list li:hover .cdl-icon {
  background: rgba(255, 106, 0, 0.2);
  transform: scale(1.08);
}

.contact-detail-list strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 3px;
}

.contact-detail-list span,
.contact-detail-list a {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  line-height: 1.5;
  display: block;
}

.contact-detail-list a:hover {
  color: var(--accent-orange);
}

/* ----- Panel badges ----- */
.panel-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 28px;
  position: relative;
}

.panel-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.panel-badge i {
  color: var(--accent-orange);
  font-size: 14px;
}

/* ============================================================
   HOME & ABOUT PAGE — ENHANCEMENTS
   ============================================================ */

/* ---------- WELCOME CHECKLIST ---------- */
.welcome-checklist {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.welcome-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: #374151;
}

.welcome-checklist li i {
  color: var(--accent-orange);
  margin-top: 3px;
  flex-shrink: 0;
}

/* ---------- SECTION EYEBROW / LABEL ---------- */
.section-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 10px;
}

.section-label-light {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 10px;
  text-align: center;
}

.section-heading-light {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-sub-light {
  font-size: 1.05rem;
  color: rgba(203, 213, 245, 0.7);
  text-align: center;
  margin-bottom: 2.5rem;
}

/* ---------- WHY CHOOSE US SECTION ---------- */
.why-us {
  padding: 80px 20px;
}

.why-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 28px 24px;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 106, 0, 0.06);
  border-color: rgba(255, 106, 0, 0.28);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: rgba(255, 106, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.why-icon i {
  font-size: 1.35rem;
  color: var(--accent-orange);
}

.why-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.9rem;
  color: rgba(203, 213, 245, 0.65);
  line-height: 1.7;
}

/* ---------- MILESTONE COUNT ROW ---------- */
.milestone-count-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.milestone-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-orange);
  margin-bottom: 0;
  line-height: 1;
}

.milestone-plus {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-orange);
  line-height: 1;
}
/* ---------- ABOUT HERO BACKGROUND ---------- */
.hero-about {
  background-image: linear-gradient(120deg, rgba(10, 26, 47, 0.72), rgba(0, 58, 143, 0.48)), url('../assets/history.jpg') !important;
  background-size: cover !important;
  background-position: center top !important;
}

/* ---------- ABOUT CARD IMPROVEMENTS ---------- */
.about-card {
  border-left: 4px solid var(--accent-orange);
  border-radius: 6px;
}

.about-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-card h3 i {
  color: var(--accent-orange);
  font-size: 1rem;
}

/* ---------- OBJECTIVES LIST ---------- */
.objectives-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.objectives-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: #374151;
}

.objectives-list li i {
  color: var(--accent-orange);
  margin-top: 3px;
  flex-shrink: 0;
}

/* ---------- VALUE CARD ICON ---------- */
.value-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(0, 58, 143, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: background 0.2s ease;
}

.value-card:hover .value-card-icon {
  background: rgba(255, 106, 0, 0.08);
}

.value-card-icon i {
  font-size: 1.3rem;
  color: var(--weg-blue);
  transition: color 0.2s ease;
}

.value-card:hover .value-card-icon i {
  color: var(--accent-orange);
}

/* ---------- ABOUT CTA SECTION ---------- */
.about-cta {
  background: linear-gradient(135deg, var(--weg-blue) 0%, #005eb8 60%, #003a8f 100%);
  padding: 80px 20px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.08) 0%, transparent 70%);
  top: -250px;
  right: -150px;
  pointer-events: none;
}

.about-cta .container {
  position: relative;
  z-index: 1;
}

.about-cta h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 14px;
}

..about-cta p {
  font-size: 1.05rem;
  opacity: 0.82;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ----- Form card ----- */
.contact-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
  border: 1px solid #e8edf4;
}

.form-card-header {
  margin-bottom: 32px;
}

.form-card-header h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--weg-blue);
  margin-bottom: 6px;
}

.form-card-header p {
  font-size: 14px;
  color: #64748b;
}

/* Row + Group */
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.cf-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cf-full {
  grid-column: 1 / -1;
  margin-bottom: 18px;
}

.cf-group label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  letter-spacing: 0.3px;
}

.req {
  color: var(--accent-orange);
}

/* Input wrap with leading icon */
.cf-input-wrap {
  position: relative;
}

.cf-input-wrap > i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  font-size: 0.85rem;
  pointer-events: none;
  transition: color 0.2s ease;
}

.cf-input-wrap input,
.cf-input-wrap select {
  width: 100%;
  padding: 11px 14px 11px 38px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  color: #1e293b;
  background: #f8fafc;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.cf-input-wrap input:focus,
.cf-input-wrap select:focus {
  border-color: var(--weg-blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 58, 143, 0.08);
}

.cf-input-wrap input:focus + i,
.cf-input-wrap:focus-within > i {
  color: var(--weg-blue);
}

/* Chevron for select */
.cf-select-wrap::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  font-size: 0.75rem;
  pointer-events: none;
}

/* Textarea */
.cf-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: #1e293b;
  background: #f8fafc;
  resize: vertical;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  outline: none;
  min-height: 130px;
}

.cf-group textarea:focus {
  border-color: var(--weg-blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 58, 143, 0.08);
}

/* Form footer row */
.cf-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.cf-privacy {
  font-size: 12px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cf-privacy i {
  color: #64748b;
}

/* Error banner */
.cf-error[hidden],
.cf-success[hidden] {
  display: none !important;
}

.cf-error {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13px;
  color: #b91c1c;
  margin-bottom: 16px;
}

.cf-error i {
  color: #ef4444;
  flex-shrink: 0;
  margin-top: 1px;
}

.cf-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
}

.cf-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 106, 0, 0.3);
}

.cf-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.cf-submit-icon {
  transition: transform 0.3s ease;
}

.cf-submit:hover:not(:disabled) .cf-submit-icon {
  transform: translateX(4px) rotate(-20deg);
}

/* Success state */
.cf-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px;
  gap: 10px;
  color: var(--weg-blue);
}

.cf-success i {
  font-size: 3rem;
  color: #16a34a;
  margin-bottom: 6px;
}

.cf-success strong {
  font-size: 20px;
}

.cf-success span {
  font-size: 14px;
  color: #64748b;
}

@keyframes cfSuccessIn {
  from { opacity: 0; transform: scale(0.92) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* ----- Map section ----- */
.map-section {
  position: relative;
}

.map-section-inner {
  position: relative;
}

.map-section-label {
  position: absolute;
  top: 16px;
  left: 20px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--weg-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.map-section-label i {
  color: var(--accent-orange);
}

.map-section iframe {
  width: 100%;
  display: block;
  filter: grayscale(20%) contrast(1.05);
  border-top: 3px solid var(--weg-blue);
}

/* ----- Responsive: contact layout ----- */
@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-panel {
    position: static;
    top: auto;
  }
}

@media (max-width: 600px) {
  .contact-form-card {
    padding: 28px 20px;
  }

  .cf-row {
    grid-template-columns: 1fr;
  }

  .cf-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .cf-submit {
    width: 100%;
    justify-content: center;
  }
}
