﻿/* Waslah Pro — Brand Theme */

@font-face {
  font-family: "Helvetica";
  src: local("Helvetica Neue"), local("Helvetica"), local("Arial");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica";
  src: local("Helvetica Neue Bold"), local("Helvetica-Bold"), local("Arial Bold");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --wp-blue-dark: #233d7b;
  --wp-blue-mid: #77B5D9;
  --wp-blue-light: #D7EAF3;
  --wp-white: #FFFFFF;
  --wp-navy-hero: #233d7b;
  --wp-text-muted: #5a6f8a;
  --wp-footer-bg: #233d7b;
  --wp-shadow: 0 4px 24px rgba(20, 57, 125, 0.12);
  --wp-radius: 8px;
  --wp-transition: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--wp-blue-dark);
  background-color: var(--wp-white);
  line-height: 1.6;
  overflow-x: hidden;
}

@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

body.page-enter {
  animation: pageFadeIn 0.35s ease both;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--wp-blue-dark);
}

a {
  color: var(--wp-blue-dark);
  text-decoration: none;
  transition: color var(--wp-transition);
}

a:hover {
  color: var(--wp-blue-mid);
}

img {
  max-width: 100%;
  height: auto;
}

/* ── Navbar ── */
.wp-navbar {
  background: var(--wp-white);
  box-shadow: 0 2px 12px rgba(20, 57, 125, 0.08);
  padding: 0.75rem 0;
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.wp-navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 4px 20px rgba(20, 57, 125, 0.15);
}

.wp-navbar .navbar-brand img {
  height: 48px;
  width: auto;
}

.wp-navbar .navbar-toggler {
  border-color: var(--wp-blue-dark);
}

.wp-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2314397D' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.wp-navbar .nav-link {
  color: var(--wp-blue-dark) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  position: relative;
}

.wp-navbar .nav-link:hover,
.wp-navbar .nav-link.active {
  color: var(--wp-blue-mid) !important;
}

.wp-navbar .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--wp-blue-mid);
  border-radius: 2px;
}

/* ── Info Bar ── */
.info-bar {
  background: var(--wp-blue-light);
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(119, 181, 217, 0.3);
}

.info-bar-item h5 {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.info-bar-item p {
  font-size: 0.875rem;
  margin: 0;
  color: var(--wp-text-muted);
}

/* ── Hero ── */
.hero-section {
  background: #233d7b;
  min-height: 520px;
  overflow: hidden;
}

.hero-section > .container-fluid > .row {
  min-height: 520px;
  align-items: stretch;
}

.hero-section .col-lg-6 {
  padding: 0;
  display: flex;
}

.hero-section .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  width: 100%;
  min-height: 520px;
  padding: 4rem 3rem;
  color: var(--wp-white);
  background: var(--wp-blue-mid);
}

.hero-section .hero-content .hero-tagline {
  color: var(--wp-blue-dark);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.hero-section .hero-content h1 {
  color: var(--wp-blue-dark);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1.25rem;
}

.hero-section .hero-content p {
  color: var(--wp-blue-dark);
  font-size: 1.05rem;
  max-width: 540px;
}

.hero-section .hero-content .hero-text-secondary {
  margin-top: 1rem;
}

.hero-section .hero-image-wrap {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex: 1;
  width: 100%;
  min-height: 520px;
  overflow: hidden;
  padding: 0;
  background: #233d7b;
}

.hero-section .hero-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center center;
  image-rendering: auto;
}

.hero-section .hero-content .hero-animate-btn {
  align-self: flex-start;
  width: fit-content;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* ── Buttons ── */
.btn-wp-primary {
  background: var(--wp-blue-mid);
  color: var(--wp-blue-dark);
  border: none;
  font-weight: 600;
  padding: 0.65rem 1.75rem;
  border-radius: 50px;
  transition: all var(--wp-transition);
}

.btn-wp-primary:hover {
  background: var(--wp-blue-light);
  color: var(--wp-blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--wp-shadow);
}

.btn-wp-outline {
  background: transparent;
  color: var(--wp-white);
  border: 2px solid var(--wp-white);
  font-weight: 600;
  padding: 0.65rem 1.75rem;
  border-radius: 50px;
  transition: all var(--wp-transition);
}

.btn-wp-outline:hover {
  background: var(--wp-white);
  color: var(--wp-blue-dark);
}

.btn-wp-dark {
  background: var(--wp-blue-dark);
  color: var(--wp-white);
  border: none;
  font-weight: 600;
  padding: 0.65rem 1.75rem;
  border-radius: 50px;
  transition: all var(--wp-transition);
}

.btn-wp-dark:hover {
  background: var(--wp-navy-hero);
  color: var(--wp-white);
  transform: translateY(-2px);
  box-shadow: var(--wp-shadow);
}

/* ── Sections ── */
.section-padding {
  padding: 5rem 0;
}

.section-bg-light {
  background: var(--wp-blue-light);
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--wp-text-muted);
  max-width: 640px;
  margin: 0 auto 3rem;
}

/* ── Capability Cards ── */
.capability-card {
  background: var(--wp-white);
  border-radius: var(--wp-radius);
  overflow: hidden;
  box-shadow: var(--wp-shadow);
  transition: transform var(--wp-transition), box-shadow var(--wp-transition);
  height: 100%;
  border: 1px solid rgba(119, 181, 217, 0.2);
}

.capability-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(20, 57, 125, 0.18);
}

.capability-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
}

.capability-card .card-body {
  padding: 1.5rem;
}

.capability-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.capability-card p {
  font-size: 0.925rem;
  color: var(--wp-text-muted);
  margin-bottom: 1rem;
}

/* ── Page Hero ── */
.page-hero {
  background: #233d7b;
  padding: 4rem 0 3rem;
  color: var(--wp-white);
  text-align: center;
}

.page-hero h1 {
  color: var(--wp-white);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 0.5rem;
}

.page-hero .breadcrumb {
  justify-content: center;
  margin: 0;
  background: transparent;
}

.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.75);
}

.page-hero .breadcrumb-item.active {
  color: var(--wp-white);
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

/* ── Service Detail ── */
.service-block {
  padding: 4rem 0;
  border-bottom: 1px solid rgba(119, 181, 217, 0.25);
}

.service-block-alt {
  background: var(--wp-blue-light);
}

.service-block img,
.section-photo {
  width: 100%;
  border-radius: var(--wp-radius);
  box-shadow: var(--wp-shadow);
}

.service-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wp-blue-mid);
  margin-bottom: 0.5rem;
}

.service-detail h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

.service-lead {
  color: var(--wp-text-muted);
  margin-bottom: 1.25rem;
  max-width: 540px;
}

.service-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

.service-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--wp-blue-dark);
  font-size: 0.95rem;
  margin: 0;
}

.service-feature-list i {
  color: var(--wp-blue-mid);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.service-media {
  border-radius: var(--wp-radius);
  overflow: hidden;
  border: 1px solid rgba(119, 181, 217, 0.25);
  box-shadow: var(--wp-shadow);
}

.service-media .section-photo {
  display: block;
  box-shadow: none;
}

.passive-slider {
  margin-top: 2.5rem;
}

.passive-slider-nav {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.strip-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--wp-blue-mid);
  color: var(--wp-white);
  font-size: 1.15rem;
  line-height: 1;
  box-shadow: var(--wp-shadow);
  transition: background var(--wp-transition), opacity var(--wp-transition);
}

.strip-nav:hover:not(:disabled):not(.swiper-button-disabled) {
  background: var(--wp-blue-dark);
}

.strip-nav:disabled,
.strip-nav.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.passive-slider-pagination {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.passive-slider-pagination .swiper-pagination-bullet {
  width: 0.55rem;
  height: 0.55rem;
  margin: 0;
  border-radius: 999px;
  background: var(--wp-blue-mid);
  opacity: 0.4;
  transition: opacity var(--wp-transition), background var(--wp-transition), width var(--wp-transition);
}

.passive-slider-pagination .swiper-pagination-bullet-active {
  width: 1.4rem;
  opacity: 1;
  background: var(--wp-blue-dark);
}

.passive-slider .swiper:not(.swiper-initialized) .swiper-wrapper {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
}

.passive-slider .swiper:not(.swiper-initialized) .passive-photo-tile {
  flex: 0 0 clamp(14rem, 26vw, 19rem);
}

.passive-photo-tile {
  height: auto;
  margin: 0;
}

.passive-photo-tile img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--wp-radius);
  display: block;
}

.passive-photo-tile figcaption {
  margin-top: 0.65rem;
  font-size: 0.9rem;
  line-height: 1.35;
  font-weight: 600;
  color: var(--wp-blue-dark);
}
@media (min-width: 576px) {
  .service-feature-list {
    grid-template-columns: 1fr 1fr;
  }
}

.map-graphic {
  display: block;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

/* ── Stats ── */
.stat-box {
  text-align: center;
  padding: 2rem 1rem;
}

.stat-box .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--wp-blue-mid);
  line-height: 1;
}

.stat-box .stat-label {
  font-size: 0.9rem;
  color: var(--wp-text-muted);
  margin-top: 0.5rem;
}

/* ── Partner Logos ── */
.partner-logo-card {
  background: var(--wp-white);
  border: 1px solid rgba(119, 181, 217, 0.35);
  border-radius: var(--wp-radius);
  padding: 1.5rem;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--wp-transition);
}

.partner-logo-card:hover {
  border-color: var(--wp-blue-mid);
  box-shadow: var(--wp-shadow);
  transform: translateY(-3px);
}

.partner-logo-card img {
  max-height: 80px;
  max-width: 100%;
  object-fit: contain;
  transition: filter var(--wp-transition);
}

.partner-logo-card:hover img {
  filter: none;
}

/* ── Industry Cards ── */
.industry-card {
  position: relative;
  border-radius: var(--wp-radius);
  overflow: hidden;
  height: 260px;
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.industry-card:hover img {
  transform: scale(1.05);
}

.industry-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 57, 125, 0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.industry-card .overlay h4 {
  color: var(--wp-white);
  margin: 0;
  font-size: 1.1rem;
}

.industry-card--modal {
  cursor: pointer;
}

.industry-card--modal:focus-visible {
  outline: 2px solid var(--wp-blue-mid);
  outline-offset: 2px;
}

.wp-detail-modal {
  border: none;
  border-radius: var(--wp-radius);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(20, 57, 125, 0.2);
}

.wp-detail-modal .modal-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(119, 181, 217, 0.25);
}

.wp-detail-modal .modal-title {
  color: var(--wp-blue-dark);
  font-weight: 700;
}

.wp-detail-modal-media {
  padding: 1.25rem 1.5rem 0;
}

.wp-detail-modal-media img {
  width: 100%;
  display: block;
  max-height: 280px;
  object-fit: cover;
  border: 1px solid rgba(119, 181, 217, 0.25);
  border-radius: var(--wp-radius);
  box-shadow: var(--wp-shadow);
}

.wp-detail-modal-text {
  padding: 1.25rem 1.5rem;
  color: var(--wp-text-muted);
  line-height: 1.65;
}

.wp-detail-modal-footer {
  padding: 1rem 1.5rem 1.25rem;
  border-top: 1px solid rgba(119, 181, 217, 0.25);
  background: var(--wp-blue-light);
}

.wp-detail-modal-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  width: 100%;
}

.wp-detail-modal-nav-btn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 2px solid var(--wp-blue-mid);
  background: var(--wp-white);
  color: var(--wp-blue-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: background var(--wp-transition), border-color var(--wp-transition), color var(--wp-transition);
}

.wp-detail-modal-nav-btn:hover {
  background: var(--wp-blue-dark);
  border-color: var(--wp-blue-dark);
  color: var(--wp-white);
}

.wp-detail-modal-nav-btn:focus-visible {
  outline: 2px solid var(--wp-blue-mid);
  outline-offset: 2px;
}

.wp-detail-modal-nav-btn svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
}

.wp-detail-modal-counter {
  min-width: 4rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--wp-blue-dark);
  background: var(--wp-white);
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
}

.service-highlight-card {
  display: block;
  text-decoration: none;
  box-shadow: var(--wp-shadow);
  transition: transform var(--wp-transition), box-shadow var(--wp-transition);
}

.service-highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(20, 57, 125, 0.15);
}

/* ── Contact Form ── */
.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid rgba(119, 181, 217, 0.5);
  border-radius: var(--wp-radius);
  padding: 0.75rem 1rem;
  font-family: inherit;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--wp-blue-mid);
  box-shadow: 0 0 0 0.2rem rgba(119, 181, 217, 0.25);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form .alert {
  border-radius: var(--wp-radius);
  margin-top: 1rem;
}

.contact-info-card {
  background: var(--wp-blue-light);
  border-radius: var(--wp-radius);
  padding: 2rem;
}

.contact-info-card .info-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-card .info-item i {
  flex-shrink: 0;
  font-size: 1.25rem;
  color: var(--wp-blue-mid);
  margin-top: 0.15rem;
  line-height: 1.4;
}

/* ── Footer ── */
.wp-footer {
  background: var(--wp-footer-bg);
  color: rgba(255, 255, 255, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 3rem 0 0;
}

.wp-footer h5 {
  color: var(--wp-white);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.wp-footer a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.wp-footer .footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem 1rem;
}

.wp-footer .footer-links-grid a {
  display: block;
  margin-bottom: 0;
}

.wp-footer a:hover {
  color: var(--wp-blue-mid);
}

.wp-footer .footer-logo {
  height: 44px;
  margin-bottom: 1rem;
}

.wp-footer .footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.5rem;
}

.wp-footer .footer-contact-item i {
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--wp-blue-mid);
}

.wp-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 992px) {
  .wp-footer .row {
    column-gap: 2rem;
  }
}

/* ── About Values ── */
.value-card {
  background: var(--wp-white);
  border-radius: var(--wp-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--wp-shadow);
  height: 100%;
  border: 1px solid rgba(119, 181, 217, 0.2);
}

.value-card i {
  font-size: 2rem;
  color: var(--wp-blue-mid);
  margin-bottom: 1rem;
}


/* ── Animations (vanilla CSS + JS, no external libraries) ── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
.animate-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; } .delay-2 { transition-delay: 0.2s; } .delay-3 { transition-delay: 0.3s; } .delay-4 { transition-delay: 0.4s; }
.hero-animate-title { animation: fadeInUp 0.7s ease 0.1s both; }
.hero-animate-text { animation: fadeInUp 0.7s ease 0.3s both; }
.hero-animate-btn { animation: fadeInUp 0.7s ease 0.5s both; }
.hero-animate-image { animation: slideInRight 0.8s ease 0.2s both; }
.why-card { background: var(--wp-white); border-radius: var(--wp-radius); padding: 2rem 1.5rem; text-align: center; height: 100%; border: 1px solid rgba(119, 181, 217, 0.25); box-shadow: var(--wp-shadow); transition: transform var(--wp-transition), box-shadow var(--wp-transition); }
.why-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(20, 57, 125, 0.15); }
.why-card i { font-size: 2.25rem; color: var(--wp-blue-mid); margin-bottom: 1rem; }
.why-card h4 { font-size: 1.05rem; margin-bottom: 0.75rem; }
.why-card p { font-size: 0.9rem; color: var(--wp-text-muted); margin: 0; }
.process-steps { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.process-step { flex: 1; min-width: 140px; text-align: center; }
.process-step .step-number { width: 56px; height: 56px; border-radius: 50%; background: var(--wp-blue-dark); color: var(--wp-white); font-size: 1.25rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; transition: transform var(--wp-transition), background var(--wp-transition); }
.process-step:hover .step-number { background: var(--wp-blue-mid); transform: scale(1.08); }
.process-step h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.875rem; color: var(--wp-text-muted); margin: 0; }
.cta-banner { background: #233d7b; padding: 4rem 0 3rem; text-align: center; color: var(--wp-white); }
.cta-banner h2 { color: var(--wp-white); font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255, 255, 255, 0.85); max-width: 560px; margin: 0 auto 1.5rem; }

/* ── Page loader ── */
html.is-loading {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wp-blue-light);
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, #ffffff 0%, var(--wp-blue-light) 50%, #c5e0ed 100%);
  animation: loaderBackdropPulse 3s ease-in-out infinite;
}

.page-loader-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.page-loader.is-exiting .page-loader-inner {
  opacity: 0;
  transform: translateY(-8px);
}

.page-loader-logo {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 1px 2px rgba(35, 61, 123, 0.12));
  animation: loaderLogoIn 0.6s ease both, loaderLogoPulse 2s ease-in-out 0.6s infinite;
}

.page-loader-tagline {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wp-blue-dark);
  animation: loaderFadeUp 0.5s ease 0.2s both;
}

.page-loader-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(35, 61, 123, 0.12);
  overflow: hidden;
}

.page-loader-progress-bar {
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, transparent, var(--wp-blue-mid), var(--wp-blue-dark), var(--wp-blue-mid), transparent);
  animation: loaderProgress 1.4s ease-in-out infinite;
}

@keyframes loaderBackdropPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.92; }
}

@keyframes loaderLogoIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes loaderLogoPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.03); opacity: 0.9; }
}

@keyframes loaderFadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes loaderProgress {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

@keyframes pageLoaderSpin {
  to { transform: rotate(360deg); }
}

/* ── Scroll to top ── */
.scroll-top-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1400;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: var(--wp-blue-dark);
  color: var(--wp-white);
  font-size: 1.25rem;
  box-shadow: var(--wp-shadow);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--wp-transition), visibility var(--wp-transition), transform var(--wp-transition), background var(--wp-transition);
}

.scroll-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--wp-blue-mid);
  color: var(--wp-blue-dark);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body.page-enter { animation: none !important; opacity: 1 !important; }
  .animate-on-scroll, .hero-animate-title, .hero-animate-text, .hero-animate-btn, .hero-animate-image { animation: none !important; opacity: 1 !important; transform: none !important; transition: none !important; }
  .capability-card:hover, .why-card:hover, .why-grid-card:hover, .product-grid-card:hover, .service-highlight-card:hover, .btn-wp-primary:hover, .btn-wp-dark:hover { transform: none; }
  .page-loader { transition: none; }
  .page-loader-backdrop { animation: none; }
  .page-loader-logo { animation: none; opacity: 1; transform: none; }
  .page-loader-tagline { animation: none; opacity: 1; transform: none; }
  .page-loader-progress-bar { animation: none; transform: none; }
  .page-loader.is-exiting .page-loader-inner { transition: none; transform: none; opacity: 1; }
  .scroll-top-btn { transition: none; transform: none; }
}
/* ── Responsive ── */
@media (max-width: 991.98px) {
  .hero-section .hero-content {
    min-height: auto;
    padding: 3rem 1.5rem;
    text-align: center;
  }

  .hero-section .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-section .hero-content .hero-animate-btn {
    align-self: center;
  }

  .hero-section .hero-image-wrap {
    min-height: 320px;
    padding: 0;
  }

  .hero-section .hero-image-wrap img {
    min-height: 320px;
  }

  .section-padding {
    padding: 3.5rem 0;
  }
}

@media (max-width: 767.98px) {
  .wp-navbar .navbar-brand img {
    height: 38px;
  }

  .info-bar-item {
    text-align: center;
    margin-bottom: 1rem;
  }

  .info-bar-item:last-child {
    margin-bottom: 0;
  }

  .hero-section {
    min-height: auto;
  }

  .capability-card img {
    aspect-ratio: 3 / 2;
  }

  .partner-logo-card {
    height: 110px;
    padding: 1rem;
  }

  .industry-card {
    height: 200px;
  }

  .scroll-top-btn {
    bottom: 5.5rem;
    right: 1rem;
  }
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 2000;
  padding: 0.75rem 1rem;
  background: var(--wp-blue-dark);
  color: var(--wp-white);
  border-radius: var(--wp-radius);
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 3px solid var(--wp-blue-mid);
  outline-offset: 2px;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  background: var(--wp-white);
  border-top: 1px solid var(--wp-blue-light);
  box-shadow: 0 -4px 24px rgba(20, 57, 125, 0.12);
  padding: 1rem 0;
}

.cookie-consent-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-consent p {
  margin: 0;
  color: var(--wp-text-muted);
}

.cookie-consent-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.why-grid-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--wp-white);
  border-radius: var(--wp-radius);
  padding: 1.25rem 1rem;
  height: 100%;
  border: 1px solid rgba(119, 181, 217, 0.25);
  box-shadow: var(--wp-shadow);
  transition: transform var(--wp-transition), box-shadow var(--wp-transition);
}

.why-grid-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(20, 57, 125, 0.15);
}

.why-grid-card i {
  flex-shrink: 0;
  font-size: 1.25rem;
  color: var(--wp-blue-mid);
  margin-top: 0.15rem;
}

.why-grid-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--wp-blue-dark);
}

#why-us .why-split-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--wp-radius);
}

#why-us .why-vm-media,
.about-vm-media {
  max-height: 28rem;
  overflow: hidden;
  border-radius: var(--wp-radius);
  border: 1px solid rgba(119, 181, 217, 0.25);
  box-shadow: var(--wp-shadow);
}

#why-us .why-vm-media img,
.about-vm-media img {
  width: 100%;
  height: 100%;
  max-height: 28rem;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.product-grid-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  background: var(--wp-white);
  border-radius: var(--wp-radius);
  padding: 0;
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(119, 181, 217, 0.25);
  box-shadow: var(--wp-shadow);
  transition: transform var(--wp-transition), box-shadow var(--wp-transition);
}

.product-grid-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(20, 57, 125, 0.15);
}

.product-grid-card img {
  width: 100%;
  max-width: none;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  margin-bottom: 0;
  flex-shrink: 0;
  display: block;
}

.product-grid-card p {
  margin: 0;
  padding: 1rem 1rem 1.25rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--wp-blue-dark);
}

.why-points-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-points-list li {
  position: relative;
  padding: 0.75rem 0 0.75rem 1.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.why-points-list li:last-child {
  border-bottom: 0;
}

.why-points-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--wp-blue-mid);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--wp-white);
  transition: background var(--wp-transition);
}

.footer-social-link:hover {
  background: var(--wp-blue-mid);
  color: var(--wp-white);
}

.legal-content h2 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  color: var(--wp-text-muted);
}

.error-page .error-code {
  font-size: clamp(4rem, 12vw, 6rem);
  font-weight: 700;
  color: var(--wp-blue-mid);
  line-height: 1;
  margin-bottom: 0.5rem;
}
