/* ================================================================
   WindMet — Nautical Brand Design System
   ================================================================ */

/* ---- Variables ---- */
:root {
  --navy-900: #050e1a;
  --navy-800: #0a1628;
  --navy-700: #0d1f3c;
  --navy-600: #1a3152;
  --blue-500: #1565c0;
  --blue-400: #1e88e5;
  --teal-400: #00b4d8;
  --teal-300: #48cae4;
  --gold-400: #e8a430;
  --white:    #ffffff;
  --gray-50:  #f6f9fc;
  --gray-100: #edf2f7;
  --gray-200: #e2e8f0;
  --gray-500: #718096;
  --gray-700: #4a5568;
  --gray-800: #2d3748;

  --font-sans:    'Inter', sans-serif;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow-sm:    0 2px 10px rgba(0,0,0,.07);
  --shadow:       0 8px 30px rgba(0,0,0,.11);
  --shadow-lg:    0 24px 60px rgba(0,0,0,.18);
  --transition:   all .3s cubic-bezier(.4,0,.2,1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--font-sans); color: var(--gray-800); background: var(--white); overflow-x: hidden; }
img   { max-width: 100%; height: auto; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }

/* ---- Preloader ---- */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy-800);
  display: flex; align-items: center; justify-content: center;
}
.preloader .spinner {
  width: 48px; height: 48px;
  border: 3px solid rgba(255,255,255,.1);
  border-top-color: var(--teal-400);
  border-radius: 50%;
  animation: wm-spin .8s linear infinite;
}
@keyframes wm-spin { to { transform: rotate(360deg); } }

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 22px 0;
  background: transparent;
  transition: var(--transition);
}
.navbar.headroom--not-top {
  background: rgba(8, 18, 35, 0.93);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
}
.navbar .navbar-brand {
  font-size: 1.55rem; font-weight: 800;
  color: white; letter-spacing: -0.5px;
}
.navbar .navbar-brand span { color: var(--teal-400); }
.navbar .nav-link {
  color: rgba(255,255,255,.75);
  font-weight: 500; font-size: .93rem;
  padding: 8px 15px; border-radius: 8px;
  transition: var(--transition); letter-spacing: .2px;
}
.navbar .nav-link:hover,
.navbar .nav-link.active { color: white; background: rgba(255,255,255,.1); }
.navbar-toggler {
  border: none; border-radius: 8px;
  background: rgba(255,255,255,.1); padding: 6px 9px;
}
.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='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/* Mobile navbar */
@media (max-width:991px) {
  .navbar { background: rgba(8,18,35,.97); padding: 14px 0; }
  .navbar-collapse { padding: 16px 0 8px; border-top: 1px solid rgba(255,255,255,.08); margin-top: 10px; }
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn-wm {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--teal-400), var(--blue-500));
  color: white; font-weight: 600; font-size: .93rem;
  padding: 14px 30px; border-radius: 50px; border: none;
  transition: var(--transition); letter-spacing: .2px;
  box-shadow: 0 8px 22px rgba(0,180,216,.3);
  cursor: pointer;
}
.btn-wm:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0,180,216,.45);
  color: white;
}
.btn-wm-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: white;
  font-weight: 600; font-size: .93rem;
  padding: 13px 30px; border-radius: 50px;
  border: 2px solid rgba(255,255,255,.3);
  transition: var(--transition); cursor: pointer;
}
.btn-wm-outline:hover {
  border-color: white; background: rgba(255,255,255,.1);
  color: white; transform: translateY(-3px);
}
.btn-wm-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy-800); color: white;
  font-weight: 600; font-size: .93rem;
  padding: 14px 30px; border-radius: 50px; border: none;
  transition: var(--transition);
  box-shadow: 0 8px 22px rgba(0,0,0,.2);
  cursor: pointer;
}
.btn-wm-dark:hover {
  background: var(--navy-700); transform: translateY(-3px);
  color: white; box-shadow: 0 14px 32px rgba(0,0,0,.3);
}

/* ================================================================
   HERO
   ================================================================ */
.wm-hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; overflow: hidden;
  background: var(--navy-800);
}
.wm-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: .32; transform: scale(1.05);
  animation: wm-zoom 20s ease-in-out infinite alternate;
}
@keyframes wm-zoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.wm-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    140deg,
    rgba(5,14,26,.92) 0%,
    rgba(10,22,40,.78) 55%,
    rgba(0,180,216,.15) 100%
  );
}
.wm-hero-content { position: relative; z-index: 2; }

.wm-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,180,216,.12);
  border: 1px solid rgba(0,180,216,.28);
  color: var(--teal-300);
  font-size: .73rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 28px;
  animation: wm-fade-down .8s ease both;
}
.wm-hero h1 {
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 900; color: white;
  line-height: 1.07; letter-spacing: -2.5px;
  margin-bottom: 24px;
  animation: wm-fade-up .9s .2s ease both;
}
.wm-hero h1 .accent { color: var(--teal-400); }
.wm-hero .hero-lead {
  font-size: 1.12rem; color: rgba(255,255,255,.65);
  max-width: 510px; line-height: 1.75; margin-bottom: 44px;
  animation: wm-fade-up .9s .4s ease both;
}
.wm-hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: wm-fade-up .9s .6s ease both;
}

/* floating anchor dots */
.wm-hero-dots {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 2;
  animation: wm-fade-up 1s .8s ease both;
}
.wm-hero-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.3); transition: var(--transition);
}
.wm-hero-dots span.active { background: var(--teal-400); width: 24px; border-radius: 4px; }

/* Scroll indicator */
.wm-scroll-hint {
  position: absolute; bottom: 36px; right: 40px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.4); font-size: .72rem;
  letter-spacing: 2px; text-transform: uppercase;
  animation: wm-fade-up 1s 1s ease both;
}
.wm-scroll-hint i { font-size: 1.2rem; animation: wm-bounce 2s infinite; }
@keyframes wm-bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* ================================================================
   SECTION HELPERS
   ================================================================ */
.section     { padding: 100px 0; }
.section-sm  { padding: 64px 0; }

.section-label {
  display: block; font-size: .72rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--teal-400); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.85rem);
  font-weight: 800; color: var(--navy-800);
  line-height: 1.18; letter-spacing: -.5px;
}
.section-title span { color: var(--teal-400); }
.section-subtitle {
  font-size: 1.03rem; color: var(--gray-500);
  line-height: 1.72; max-width: 560px;
}

/* Wave divider */
.wm-wave { line-height: 0; overflow: hidden; }
.wm-wave svg { display: block; width: 100%; }

/* ================================================================
   PRODUCT CARDS
   ================================================================ */
.products-grid-section { background: var(--gray-50); }

.wm-product-card {
  background: white; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition); height: 100%;
  display: flex; flex-direction: column;
  border: 1px solid transparent;
}
.wm-product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,180,216,.15);
}
.wm-product-card-img {
  position: relative; overflow: hidden;
  aspect-ratio: 4 / 3; background: var(--gray-100);
}
.wm-product-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s ease;
}
.wm-product-card:hover .wm-product-card-img img { transform: scale(1.09); }
.wm-product-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,14,26,.72) 0%, transparent 55%);
  opacity: 0; transition: var(--transition);
  display: flex; align-items: flex-end; justify-content: center; padding-bottom: 22px;
}
.wm-product-card:hover .wm-product-card-overlay { opacity: 1; }
.btn-card-overlay {
  color: white; border: 2px solid white;
  border-radius: 50px; padding: 8px 22px;
  font-size: .83rem; font-weight: 600;
  transition: var(--transition);
}
.btn-card-overlay:hover { background: white; color: var(--navy-800); }

.wm-product-card-body { padding: 26px; flex-grow: 1; display: flex; flex-direction: column; }
.wm-product-card-title {
  font-size: 1.08rem; font-weight: 700;
  color: var(--navy-800); margin-bottom: 8px; line-height: 1.3;
}
.wm-product-card-desc {
  font-size: .875rem; color: var(--gray-500);
  line-height: 1.62; margin-bottom: 18px; flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.wm-product-card-link {
  color: var(--teal-400); font-weight: 600; font-size: .88rem;
  display: inline-flex; align-items: center; gap: 6px;
  transition: var(--transition); margin-top: auto;
}
.wm-product-card-link:hover { gap: 11px; color: var(--blue-400); }

/* ================================================================
   FEATURES SECTION
   ================================================================ */
.wm-features-section {
  background: var(--navy-800); position: relative; overflow: hidden;
}
.wm-features-section::before {
  content: '';
  position: absolute; top: -300px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,180,216,.1) 0%, transparent 70%);
  pointer-events: none;
}
.wm-features-section::after {
  content: '';
  position: absolute; bottom: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(21,101,192,.12) 0%, transparent 70%);
  pointer-events: none;
}
.wm-feature-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg); padding: 36px 28px;
  transition: var(--transition); position: relative; z-index: 1;
}
.wm-feature-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(0,180,216,.3);
  transform: translateY(-5px);
}
.wm-feature-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(0,180,216,.18), rgba(30,136,229,.18));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--teal-400); margin-bottom: 22px;
}
.wm-feature-title {
  font-size: 1.02rem; font-weight: 700; color: white; margin-bottom: 10px;
}
.wm-feature-desc {
  font-size: .88rem; color: rgba(255,255,255,.5); line-height: 1.68;
}

/* ================================================================
   SPLIT SECTIONS (App / NMEA)
   ================================================================ */
.wm-split { padding: 90px 0; }
.wm-split .split-text { padding: 0 24px; }
.wm-split .split-img-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.wm-split .split-img-wrap img { width: 100%; height: 420px; object-fit: cover; }

/* ================================================================
   STATS
   ================================================================ */
.wm-stats { background: white; padding: 70px 0; }
.wm-stats-grid { display: flex; flex-wrap: wrap; }
.wm-stat-item {
  flex: 1 1 180px; text-align: center; padding: 24px 20px;
  border-right: 1px solid var(--gray-100);
}
.wm-stat-item:last-child { border-right: none; }
.wm-stat-number {
  font-size: 2.8rem; font-weight: 900;
  color: var(--navy-800); letter-spacing: -2px; line-height: 1;
}
.wm-stat-number .accent { color: var(--teal-400); }
.wm-stat-label {
  font-size: .88rem; color: var(--gray-500);
  margin-top: 6px; font-weight: 500;
}

/* ================================================================
   PAGE HEADER (interior pages)
   ================================================================ */
.wm-page-header {
  background: linear-gradient(140deg, var(--navy-900) 0%, var(--navy-700) 100%);
  padding: 150px 0 80px; position: relative; overflow: hidden;
}
.wm-page-header::before {
  content: '';
  position: absolute; top: -150px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,180,216,.13) 0%, transparent 70%);
}
.wm-page-header h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900; color: white; letter-spacing: -1px; line-height: 1.12;
}
.wm-page-header h1 .accent { color: var(--teal-400); }
.wm-page-header p { color: rgba(255,255,255,.55); font-size: 1.05rem; margin-top: 12px; }

/* ================================================================
   PRODUCT DETAIL
   ================================================================ */
.wm-product-detail { padding: 80px 0 100px; }
.wm-detail-img {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
}
.wm-detail-img img { width: 100%; height: 480px; object-fit: cover; }
.wm-detail-badge {
  display: inline-block;
  background: rgba(0,180,216,.1);
  color: var(--teal-400); border: 1px solid rgba(0,180,216,.2);
  font-size: .73rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 18px;
}
.wm-detail-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800; color: var(--navy-800);
  letter-spacing: -.5px; margin-bottom: 20px; line-height: 1.15;
}
.wm-detail-desc {
  font-size: 1.04rem; color: var(--gray-500);
  line-height: 1.82; margin-bottom: 32px;
}
.wm-detail-features { margin-bottom: 40px; }
.wm-detail-features li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0; font-size: .95rem; color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}
.wm-detail-features li:last-child { border-bottom: none; }
.wm-detail-features li i { color: var(--teal-400); font-size: 1.05rem; margin-top: 1px; flex-shrink: 0; }

/* ================================================================
   PRODUCT GALLERY (Swiper)
   ================================================================ */
.wm-gallery-wrap { position: relative; }

/* Main swiper */
.wm-gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-100);
  box-shadow: var(--shadow-lg);
}
.wm-gallery-main .swiper-slide {
  display: flex; align-items: center; justify-content: center;
  background: var(--gray-100);
  height: 460px;
}
.wm-gallery-main .swiper-slide img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.wm-gallery-main .swiper-slide iframe,
.wm-gallery-main .swiper-slide video {
  width: 100%; height: 100%; border: none; display: block;
}

/* Swiper nav arrows */
.wm-gallery-main .swiper-button-next,
.wm-gallery-main .swiper-button-prev {
  width: 44px; height: 44px;
  background: rgba(10,22,40,.65);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}
.wm-gallery-main .swiper-button-next:hover,
.wm-gallery-main .swiper-button-prev:hover { background: var(--teal-400); }
.wm-gallery-main .swiper-button-next::after,
.wm-gallery-main .swiper-button-prev::after { font-size: .9rem; font-weight: 700; }

/* Thumbnails swiper */
.wm-gallery-thumbs {
  margin-top: 12px;
  height: 80px;
}
.wm-gallery-thumbs .swiper-slide {
  border-radius: 8px; overflow: hidden;
  cursor: pointer; opacity: .5;
  transition: opacity .25s, outline .25s;
  height: 80px; background: var(--gray-100);
}
.wm-gallery-thumbs .swiper-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wm-gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  outline: 2px solid var(--teal-400);
  outline-offset: 2px;
}
/* Video thumbnail placeholder */
.wm-thumb-video {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy-800); color: var(--teal-400); font-size: 1.4rem;
}
/* Video slide placeholder icon */
.wm-video-slide-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 100%; height: 100%;
  background: var(--navy-900); color: white; gap: 12px;
}
.wm-video-slide-placeholder i { font-size: 3rem; color: var(--teal-400); }
.wm-video-slide-placeholder span { font-size: .85rem; color: rgba(255,255,255,.5); }

/* Image counter badge */
.wm-gallery-counter {
  position: absolute; top: 14px; right: 14px; z-index: 10;
  background: rgba(10,22,40,.7); backdrop-filter: blur(6px);
  color: rgba(255,255,255,.8); font-size: .78rem; font-weight: 600;
  padding: 4px 12px; border-radius: 50px;
}

@media (max-width: 768px) {
  .wm-gallery-main .swiper-slide { height: 280px; }
  .wm-gallery-thumbs { height: 64px; }
  .wm-gallery-thumbs .swiper-slide { height: 64px; }
}

/* ================================================================
   RELATED PRODUCTS
   ================================================================ */
.wm-related { background: var(--gray-50); padding: 80px 0; }

/* ================================================================
   CONTACT
   ================================================================ */
.wm-contact-section { background: var(--gray-50); padding: 80px 0 100px; }
.wm-contact-form-card {
  background: white; border-radius: var(--radius-lg);
  padding: 50px; box-shadow: var(--shadow);
}
.wm-contact-info-card {
  background: var(--navy-800); border-radius: var(--radius-lg);
  padding: 50px; height: 100%; position: relative; overflow: hidden;
}
.wm-contact-info-card::before {
  content: '';
  position: absolute; top: -120px; right: -100px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(0,180,216,.18) 0%, transparent 70%);
}
.wm-contact-info-card h3 { color: white; font-weight: 700; font-size: 1.3rem; margin-bottom: 6px; }
.wm-contact-info-card > p { color: rgba(255,255,255,.45); font-size: .9rem; margin-bottom: 40px; }
.wm-contact-item { display: flex; gap: 16px; margin-bottom: 28px; position: relative; z-index: 1; }
.wm-contact-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(255,255,255,.07); border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-400); font-size: 1.1rem;
}
.wm-contact-text h6 { color: white; font-weight: 600; margin-bottom: 3px; font-size: .88rem; }
.wm-contact-text a,
.wm-contact-text span { color: rgba(255,255,255,.5); font-size: .87rem; transition: var(--transition); }
.wm-contact-text a:hover { color: var(--teal-400); }
.wm-contact-social { display: flex; gap: 10px; margin-top: 40px; position: relative; z-index: 1; }
.wm-contact-social a {
  width: 42px; height: 42px;
  background: rgba(255,255,255,.07); border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); font-size: 1rem;
  transition: var(--transition);
}
.wm-contact-social a:hover { background: var(--teal-400); color: white; transform: translateY(-3px); }

/* Form fields */
.wm-input-wrap { margin-bottom: 20px; }
.wm-label { display: block; font-weight: 600; font-size: .85rem; color: var(--gray-700); margin-bottom: 7px; }
.wm-input {
  width: 100%; padding: 13px 17px;
  border: 2px solid var(--gray-200); border-radius: 10px;
  font-size: .95rem; font-family: var(--font-sans);
  color: var(--gray-800); background: white;
  transition: var(--transition); outline: none;
}
.wm-input:focus { border-color: var(--teal-400); box-shadow: 0 0 0 4px rgba(0,180,216,.1); }
textarea.wm-input { resize: vertical; min-height: 140px; }

/* ================================================================
   FAQ
   ================================================================ */
.wm-faq-section { background: var(--gray-50); padding: 60px 0 100px; }
.wm-faq-label {
  font-size: .8rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--teal-400); margin-bottom: 12px;
}
.wm-faq-group { margin-bottom: 50px; }
.wm-faq-group-title {
  font-size: 1.3rem; font-weight: 700; color: var(--navy-800);
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-200);
}
.wm-accordion .accordion-item {
  border: none; background: white;
  border-radius: var(--radius) !important;
  margin-bottom: 10px; box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.wm-accordion .accordion-button {
  font-weight: 600; font-size: .95rem;
  color: var(--navy-800); background: white;
  padding: 20px 24px;
}
.wm-accordion .accordion-button:not(.collapsed) { color: var(--teal-400); box-shadow: none; }
.wm-accordion .accordion-button:focus { box-shadow: none; }
.wm-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230096c7'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.wm-accordion .accordion-body {
  padding: 2px 24px 20px; color: var(--gray-500);
  line-height: 1.72; font-size: .94rem;
}

/* ================================================================
   FOOTER
   ================================================================ */
.wm-footer { background: var(--navy-900); padding: 80px 0 0; }
.wm-footer-logo { font-size: 1.7rem; font-weight: 800; color: white; letter-spacing: -.5px; margin-bottom: 14px; }
.wm-footer-logo span { color: var(--teal-400); }
.wm-footer-desc { color: rgba(255,255,255,.38); font-size: .88rem; line-height: 1.65; max-width: 230px; }
.wm-footer-heading {
  color: rgba(255,255,255,.5); font-size: .73rem;
  font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 22px;
}
.wm-footer-links li { margin-bottom: 11px; }
.wm-footer-links a {
  color: rgba(255,255,255,.42); font-size: .9rem; transition: var(--transition);
}
.wm-footer-links a:hover { color: var(--teal-400); padding-left: 4px; }
.wm-footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.wm-footer-social a {
  width: 40px; height: 40px; background: rgba(255,255,255,.06);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; color: rgba(255,255,255,.45); font-size: 1rem;
  transition: var(--transition);
}
.wm-footer-social a:hover {
  background: var(--teal-400); color: white; transform: translateY(-3px);
}
.wm-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 60px; padding: 26px 0;
}
.wm-footer-copy { color: rgba(255,255,255,.28); font-size: .82rem; }

/* ================================================================
   AOS overrides (keep transforms clean)
   ================================================================ */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes wm-fade-down {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes wm-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 992px) {
  .wm-split .split-img-wrap img { height: 300px; }
  .wm-contact-form-card,
  .wm-contact-info-card { padding: 30px; }
  .wm-contact-info-card { margin-top: 24px; }
  .wm-stat-item { border-right: none; border-bottom: 1px solid var(--gray-100); }
  .wm-stat-item:last-child { border-bottom: none; }
}
@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .wm-hero h1 { letter-spacing: -1.5px; }
  .wm-detail-img img { height: 280px; }
  .wm-page-header { padding: 120px 0 60px; }
  .wm-footer { padding: 60px 0 0; }
}
