/* ============================================
   OURA - Automation & Data Strategy
   style.css
   ============================================ */

/* ── VARIABLES ── */
:root {
  --navy:       #0d1b3e;
  --navy-mid:   #12275a;
  --teal:       #1a9b8a;
  --teal-light: #4db8c8;
  --gold:       #f5a623;
  --white:      #f0f4ff;
  --gray:       #8b9abf;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { background: var(--navy); color: var(--white); font-family: 'Lato', sans-serif; overflow-x: hidden; }
/* Smooth transition when navigating to service pages */
@media (prefers-reduced-motion: no-preference) {
  .service-card-link { transition: opacity 0.25s ease, transform 0.3s ease; }
}

/* ── SKIP LINK (accessibility) ── */
.skip-link {
  position: absolute; top: -60px; left: 16px; z-index: 10000;
  padding: 12px 20px; background: var(--teal); color: var(--navy);
  font-weight: 700; text-decoration: none; border-radius: 8px;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; outline: 2px solid var(--gold); outline-offset: 2px; }

/* ── SCROLL PROGRESS BAR ── */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  z-index: 9999; transition: width 0.1s linear;
}

/* ── PARTICLES ── */
canvas#particles { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.hero-overlay {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(26,155,138,0.10) 0%, transparent 65%),
    radial-gradient(ellipse at 20% 80%, rgba(245,166,35,0.07) 0%, transparent 60%);
}

/* ── HEADER / NAV ── */
header {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(13,27,62,0.88); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(77,184,200,0.15);
  animation: slideDown 0.8s ease forwards;
}
@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
nav.container {
  max-width: 1200px; margin: 0 auto; padding: 12px 60px;
  display: flex; align-items: center; justify-content: space-between;
}

/* ── LOGO ── */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
}
.nav-logo-img {
  height: 50px;
  width: 50px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(77,184,200,0.5));
  animation: logoGlow 3s ease infinite;
}
.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: 5px;
  background: linear-gradient(135deg, var(--teal-light), var(--white));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@keyframes logoGlow {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(77,184,200,0.4)); }
  50%       { filter: drop-shadow(0 0 18px rgba(77,184,200,1)); }
}

/* Hamburger (hidden on desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid rgba(77,184,200,0.4);
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
  transition: border-color 0.3s, background 0.3s;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--teal-light);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.nav-toggle:hover { border-color: var(--teal-light); background: rgba(77,184,200,0.1); }

nav ul { display: flex; gap: 36px; list-style: none; align-items: center; }
nav ul a {
  color: var(--gray); text-decoration: none; font-size: 0.88rem; letter-spacing: 1.5px;
  text-transform: uppercase; font-family: 'Montserrat', sans-serif; font-weight: 600;
  transition: color 0.3s; position: relative;
}
nav ul a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--gold); transition: width 0.3s;
}
nav ul a:hover { color: var(--white); }
nav ul a:hover::after { width: 100%; }
nav ul a:focus-visible { outline: 2px solid var(--teal-light); outline-offset: 4px; color: var(--white); }
.nav-cta {
  background: linear-gradient(135deg, var(--teal), var(--teal-light)) !important;
  color: var(--navy) !important; -webkit-text-fill-color: var(--navy) !important;
  padding: 10px 26px; border-radius: 25px; font-weight: 700 !important;
  transition: transform 0.3s, box-shadow 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: scale(1.05); box-shadow: 0 0 22px rgba(77,184,200,0.5); }

/* ── HERO ── */
.hero {
  position: relative; z-index: 2; min-height: 100vh;
  display: flex; align-items: center;
  max-width: 1200px; margin: 0 auto; padding: 140px 60px 80px;
  overflow: hidden;
}

/* Spinning logo background */
.hero-logo-bg {
  position: absolute;
  left: -80px; top: 50%;
  transform: translateY(-50%);
  z-index: 0; pointer-events: none;
  opacity: 0.07;
}
.spinning-logo {
  width: 550px; height: 550px;
  animation: spinLogo 18s linear infinite;
  filter: blur(1px) drop-shadow(0 0 40px rgba(77,184,200,0.6));
}
@keyframes spinLogo {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 70px; align-items: center; width: 100%;
  position: relative; z-index: 2;
}
.hero-inner--center {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.hero-inner--center .hero-sub { margin-left: auto; margin-right: auto; }
.hero-inner--center .hero-btns { justify-content: center; }
.hero-text { animation: fadeUp 1s 0.3s both; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(77,184,200,0.12); border: 1px solid rgba(77,184,200,0.35);
  color: var(--teal-light); padding: 6px 18px; border-radius: 20px;
  font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 28px;
}
.hero-badge-icon { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero h1 {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(2.4rem, 4.5vw, 4rem); line-height: 1.08; margin-bottom: 22px;
}
.highlight-blue {
  background: linear-gradient(135deg, var(--teal-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub { color: var(--gray); font-size: 1.1rem; line-height: 1.7; max-width: 460px; margin-bottom: 38px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn-primary {
  padding: 15px 36px; border-radius: 30px; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--navy); font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.95rem; letter-spacing: 1px;
  transition: transform 0.3s, box-shadow 0.3s; text-decoration: none; display: inline-block;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(26,155,138,0.5); }
.btn-primary:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.btn-outline {
  padding: 15px 36px; border-radius: 30px; border: 2px solid rgba(77,184,200,0.4);
  color: var(--white); background: transparent; cursor: pointer;
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.95rem;
  transition: all 0.3s; text-decoration: none; display: inline-block;
}
.btn-outline:hover { border-color: var(--teal-light); background: rgba(77,184,200,0.1); transform: translateY(-3px); }
.btn-outline:focus-visible { outline: 2px solid var(--teal-light); outline-offset: 3px; }

/* ── HERO VIDEO ── */
.hero-video-wrap {
  position: relative; animation: fadeUp 1s 0.6s both; z-index: 2;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(77,184,200,0.2);
}
.hero-video-wrap::before {
  content: ''; position: absolute; inset: -2px; z-index: -1; border-radius: 22px;
  background: linear-gradient(135deg, var(--teal), var(--gold), var(--teal));
  background-size: 200% 200%; animation: gradShift 4s ease infinite;
}
@keyframes gradShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.hero-video-wrap video { width: 100%; display: block; border-radius: 20px; max-height: 400px; object-fit: cover; }

/* Sound button */
.sound-btn {
  position: absolute; bottom: 12px; right: 12px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(13,27,62,0.80); backdrop-filter: blur(6px);
  border: 1px solid rgba(77,184,200,0.35); color: white;
  cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, background 0.2s;
}
.sound-btn .sound-icon { display: flex; align-items: center; justify-content: center; }
.sound-btn.is-muted .sound-icon-unmute { display: none; }
.sound-btn:not(.is-muted) .sound-icon-mute { display: none; }
.sound-btn:hover { transform: scale(1.15); background: rgba(26,155,138,0.6); }

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

/* ── MARQUEE ── */
.marquee-strip {
  position: relative; z-index: 2; background: rgba(26,155,138,0.09);
  border-top: 1px solid rgba(77,184,200,0.18); border-bottom: 1px solid rgba(77,184,200,0.18);
  padding: 15px 0; overflow: hidden;
}
.marquee-track { display: flex; gap: 60px; white-space: nowrap; animation: marquee 24s linear infinite; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.78rem;
  letter-spacing: 2px; text-transform: uppercase; color: var(--teal-light);
  display: flex; align-items: center; gap: 14px;
}
.mdot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 60px; }

/* ── ABOUT (Mission + Video) ── */
.about-section { position: relative; z-index: 2; padding: 80px 0 50px; }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text { max-width: 100%; }
.about-video-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(77,184,200,0.2);
}
.about-video-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--teal), var(--gold), var(--teal));
  background-size: 200% 200%;
  animation: gradShift 4s ease infinite;
}
.about-video-wrap video {
  width: 100%;
  display: block;
  border-radius: 20px;
  max-height: 380px;
  object-fit: cover;
}
.label-accent {
  display: inline-block; font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.about-text h2 { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(1.8rem, 3.5vw, 2.6rem); line-height: 1.15; margin-bottom: 18px; }
.about-text > p { color: var(--gray); font-size: 1rem; line-height: 1.75; margin-bottom: 36px; }
.stats-row { display: flex; gap: 1px; border-radius: 14px; overflow: hidden; background: rgba(77,184,200,0.12); max-width: 420px; }
.stat-item { flex: 1; background: rgba(13,27,62,0.6); padding: 26px 24px; text-align: center; transition: background 0.3s; }
.stat-item:hover { background: rgba(26,155,138,0.12); }
.stat-item h3 { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 2.2rem; background: linear-gradient(135deg, var(--teal-light), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-item p { color: var(--gray); font-size: 0.82rem; letter-spacing: 1px; margin-top: 6px; text-transform: uppercase; font-family: 'Montserrat', sans-serif; font-weight: 600; }

/* ── WHY US (Why Partner With Us) ── */
.why-us-section {
  position: relative;
  z-index: 2;
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(26,155,138,0.07), rgba(77,184,200,0.04));
  border-top: 1px solid rgba(77,184,200,0.12);
  border-bottom: 1px solid rgba(77,184,200,0.12);
}
.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.why-us-tag {
  display: inline-block;
  background: rgba(77,184,200,0.15);
  border: 1px solid rgba(77,184,200,0.35);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 0.8rem;
  margin-bottom: 20px;
}
.why-us-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--white);
}
.why-us-accent { color: var(--teal-light); }
.why-us-accent-gold { color: var(--gold); }
.why-us-text {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}
.why-us-checklist {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.why-us-checklist li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(77,184,200,0.2);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 24px;
  font-size: 0.9rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
.why-us-check {
  color: #22c55e;
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
}
.why-us-check svg { display: block; }
.why-us-stats-vertical {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
  max-width: 320px;
}
.why-us-stats-vertical .stats-card {
  padding: 24px 24px;
  text-align: left;
}
.why-us-stats-vertical .stats-num {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 6px;
}
.why-us-stats-vertical .stats-label {
  font-size: 0.8rem;
}
.why-us-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.why-us-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(77,184,200,0.15);
  border-radius: 16px;
  padding: 28px 32px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.why-us-card:hover {
  border-color: rgba(77,184,200,0.35);
  box-shadow: 0 12px 40px rgba(26,155,138,0.1);
}
.why-us-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(77,184,200,0.15);
  color: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.why-us-card-icon svg { flex-shrink: 0; }
.why-us-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
}
.why-us-card p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 16px;
}
.why-us-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.why-us-tags span {
  background: rgba(255,255,255,0.08);
  color: var(--gray);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

@media (max-width: 900px) {
  .why-us-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-us-stats-vertical { max-width: 100%; margin-top: 28px; }
}

/* ── STATS (reused elsewhere if needed) ── */
.stats-section {
  position: relative; z-index: 2; padding: 80px 0;
  background: linear-gradient(135deg, rgba(26,155,138,0.07), rgba(77,184,200,0.04));
  border-top: 1px solid rgba(77,184,200,0.12); border-bottom: 1px solid rgba(77,184,200,0.12);
}
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stats-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(77,184,200,0.15);
  border-radius: 20px; padding: 44px 30px; text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.stats-card:hover { transform: translateY(-6px); border-color: var(--teal); box-shadow: 0 20px 50px rgba(26,155,138,0.15); }
.stats-icon { font-size: 2.2rem; margin-bottom: 16px; }
.stats-num {
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(3rem, 5vw, 4.5rem);
  background: linear-gradient(135deg, var(--teal-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 10px;
}
.stats-label { color: var(--gray); font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.85rem; letter-spacing: 1.5px; text-transform: uppercase; }

.section-header { margin-bottom: 60px; }
.section-header h2 { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-top: 10px; }

/* ── SERVICES ── */
.services-section { position: relative; z-index: 2; padding: 50px 0 100px; }
.services-section > .container { border-top: 1px solid rgba(77,184,200,0.1); padding-top: 50px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(77,184,200,0.14);
  border-radius: 16px; padding: 34px 28px;
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.4s, box-shadow 0.4s;
  position: relative; overflow: hidden;
}
.service-card.visible { opacity: 1; transform: translateY(0); }
.service-card-link { text-decoration: none; color: inherit; display: block; }
.service-card-link .service-learn-more { display: inline-block; margin-top: 12px; }
.service-card:hover { border-color: var(--teal); box-shadow: 0 20px 55px rgba(26,155,138,0.15); transform: translateY(-7px) !important; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.service-card:hover::before { transform: scaleX(1); }
.card-icon { width: 58px; height: 58px; border-radius: 14px; background: rgba(26,155,138,0.14); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; border: 1px solid rgba(26,155,138,0.28); color: var(--teal-light); }
.card-icon svg { flex-shrink: 0; }
.card-icon--green { background: rgba(34,197,94,0.15); border-color: rgba(34,197,94,0.35); color: #22c55e; }
.card-icon--purple { background: rgba(168,85,247,0.15); border-color: rgba(168,85,247,0.35); color: #a855f7; }
.card-icon--blue { background: rgba(59,130,246,0.15); border-color: rgba(59,130,246,0.35); color: #3b82f6; }
.card-icon--orange { background: rgba(249,115,22,0.15); border-color: rgba(249,115,22,0.35); color: #f97316; }
.card-icon--pink { background: rgba(236,72,153,0.15); border-color: rgba(236,72,153,0.35); color: #ec4899; }
.service-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.05rem; margin-bottom: 10px; }
.service-card-title-accent { color: var(--teal-light) !important; }
.service-learn-more { display: inline-block; margin-top: 12px; color: var(--teal-light); font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.88rem; text-decoration: none; transition: color 0.3s, transform 0.2s; }
.service-learn-more:hover { color: var(--gold); transform: translateX(4px); }
.service-card p { color: var(--gray); font-size: 0.91rem; line-height: 1.65; }

/* ── CONTACT / FOOTER ── */
footer#contact { position: relative; z-index: 2; background: radial-gradient(ellipse at center, rgba(26,155,138,0.12), transparent 70%); border-top: 1px solid rgba(77,184,200,0.12); padding: 100px 0 50px; }
.contact-card-bold { background: rgba(255,255,255,0.03); border: 1px solid rgba(77,184,200,0.18); border-radius: 24px; padding: 70px 60px; text-align: center; margin-bottom: 40px; position: relative; overflow: hidden; }
.contact-card-bold::before { content: ''; position: absolute; inset: -2px; border-radius: 26px; z-index: -1; background: linear-gradient(135deg, rgba(77,184,200,0.3), rgba(245,166,35,0.2), rgba(26,155,138,0.3)); background-size: 300% 300%; animation: gradShift 6s ease infinite; }
.contact-label { display: inline-block; background: rgba(77,184,200,0.12); border: 1px solid rgba(77,184,200,0.35); color: var(--teal-light); padding: 6px 18px; border-radius: 20px; font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 22px; }
.contact-card-bold h2 { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 16px; }
.contact-card-bold > p { color: var(--gray); font-size: 1rem; line-height: 1.7; max-width: 560px; margin: 0 auto 40px; }
.contact-info-wrap { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.contact-box {
  background: rgba(13,27,62,0.7); border: 1px solid rgba(77,184,200,0.25);
  border-radius: 14px; padding: 28px 50px; text-align: center;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.contact-box:hover { border-color: var(--teal); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,155,138,0.2); }
.contact-box p { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.contact-box a { color: var(--white); text-decoration: none; font-size: 1.1rem; font-family: 'Montserrat', sans-serif; font-weight: 600; transition: color 0.3s; }
.contact-box a:hover { color: var(--teal-light); }
.whatsapp-box { cursor: pointer; border-color: rgba(37,211,102,0.3) !important; }
.whatsapp-box:hover { border-color: #25D366 !important; box-shadow: 0 12px 40px rgba(37,211,102,0.2) !important; }
.wa-link { display: flex; align-items: center; gap: 8px; justify-content: center; color: var(--white); font-size: 1.1rem; font-family: 'Montserrat', sans-serif; font-weight: 600; }
.footer-bottom { text-align: center; color: var(--gray); font-size: 0.83rem; padding-top: 40px; }

/* ── SERVICE DETAIL PAGES ── */
.service-page { position: relative; z-index: 2; }
.service-page-breadcrumb {
  padding: 100px 0 20px;
}
.service-page-breadcrumb a {
  color: var(--teal-light);
  text-decoration: none;
  font-size: 0.88rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: color 0.3s;
}
.service-page-breadcrumb a:hover { color: var(--gold); }
.service-page-breadcrumb span { color: var(--gray); margin: 0 8px; font-size: 0.88rem; }
.service-page-hero {
  padding: 0 0 50px;
  border-bottom: 1px solid rgba(77,184,200,0.12);
  margin-bottom: 50px;
}
.service-page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--white);
}
.service-page-hero .service-page-intro {
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 720px;
}
.service-page-content { padding: 0 0 50px; }
.service-page-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 16px;
  margin-top: 36px;
}
.service-page-content h2:first-child { margin-top: 0; }
.service-page-content p, .service-page-content li {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 14px;
}
.service-page-content ul { margin: 0 0 24px 24px; padding: 0; }
.service-page-examples {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 24px;
}
.service-example-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(77,184,200,0.15);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.service-example-card:hover {
  border-color: var(--teal);
  box-shadow: 0 12px 40px rgba(26,155,138,0.12);
}
.service-example-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--teal-light);
  margin-bottom: 10px;
}
.service-example-card p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
}
.service-page-cta {
  text-align: center;
  padding: 60px 0 80px;
  border-top: 1px solid rgba(77,184,200,0.12);
}
.service-page-cta h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin-bottom: 12px;
}
.service-page-cta p { margin-bottom: 24px; color: var(--gray); }
.service-page-cta .btn-primary { text-decoration: none; }

@media (max-width: 900px) {
  .service-page-examples { grid-template-columns: 1fr; }
}

/* ── TESTIMONIALS PAGE ── */
.testimonials-hero {
  position: relative;
  z-index: 2;
  padding: 160px 0 80px;
  text-align: center;
}
.testimonials-hero-inner { max-width: 640px; margin: 0 auto; }
.testimonials-hero-inner .label-accent { margin-bottom: 14px; }
.testimonials-hero-inner h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 18px;
}
.testimonials-hero-sub {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.7;
}
/* Backup: hidden testimonial section — remove .is-backup from section and restore nav link to show */
.testimonials-section.is-backup { display: none !important; }

.testimonials-section {
  position: relative;
  z-index: 2;
  padding: 80px 0 100px;
}
.testimonials-section .section-header { margin-bottom: 50px; }
.testimonials-section .section-header h2 { margin-top: 8px; }

/* Testimonials slider */
.testimonials-slider {
  position: relative;
  padding: 0 52px;
}
.testimonials-track-wrap {
  overflow: hidden;
  border-radius: 18px;
  width: 100%;
}
.testimonials-track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
  width: 600%; /* 6 slides × 100% of wrap */
}
.testimonial-slide {
  width: 16.666666%; /* 100% / 6 */
  flex: 0 0 16.666666%;
  padding: 40px 24px 36px;
  box-sizing: border-box;
  overflow: hidden;
}
.testimonial-slide .testimonial-quote-mark,
.testimonial-slide .testimonial-quote,
.testimonial-slide .testimonial-author { margin-left: 0; margin-right: 0; }
.testimonials-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(77, 184, 200, 0.4);
  background: rgba(13, 27, 62, 0.9);
  color: var(--teal-light);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  z-index: 2;
}
.testimonials-slider-btn:hover:not([aria-disabled="true"]) {
  background: rgba(26, 155, 138, 0.25);
  border-color: var(--teal-light);
}
.testimonials-slider-btn[aria-disabled="true"] { opacity: 0.4; cursor: default; }
.testimonials-slider-btn--prev { left: 0; }
.testimonials-slider-btn--next { right: 0; }
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(77, 184, 200, 0.3);
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.testimonial-dot:hover { background: rgba(77, 184, 200, 0.6); }
.testimonial-dot.active { background: var(--teal-light); transform: scale(1.2); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(77, 184, 200, 0.14);
  border-radius: 18px;
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.testimonial-slide {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(77, 184, 200, 0.14);
  border-radius: 18px;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
  border-color: var(--teal);
  box-shadow: 0 20px 50px rgba(26, 155, 138, 0.12);
  transform: translateY(-4px);
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: 18px 18px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.testimonial-card:hover::before { transform: scaleX(1); }
.testimonial-slide::before { border-radius: 18px 18px 0 0; }
.testimonial-slide:hover::before { transform: scaleX(1); }
.testimonial-quote-mark {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 4rem;
  line-height: 1;
  color: rgba(77, 184, 200, 0.25);
  margin-bottom: -20px;
}
.testimonial-quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--white);
  margin: 0 0 24px 0;
  font-style: normal;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-name {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.testimonial-role {
  display: block;
  font-size: 0.82rem;
  color: var(--gray);
}
.testimonials-cta {
  position: relative;
  z-index: 2;
  padding: 80px 0 100px;
  background: linear-gradient(135deg, rgba(26, 155, 138, 0.06), rgba(77, 184, 200, 0.04));
  border-top: 1px solid rgba(77, 184, 200, 0.12);
}
.testimonials-cta-inner {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}
.testimonials-cta-inner h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}
.testimonials-cta-inner p {
  color: var(--gray);
  margin-bottom: 24px;
  font-size: 1rem;
}
.testimonials-footer {
  position: relative;
  z-index: 2;
  padding: 40px 0;
  border-top: 1px solid rgba(77, 184, 200, 0.1);
}
.footer-home-link {
  color: var(--teal-light);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}
.footer-home-link:hover { color: var(--gold); }
.testimonials-footer .footer-bottom { padding-top: 0; }

@media (max-width: 900px) {
  .testimonials-hero { padding: 130px 24px 60px; }
  .testimonials-slider { padding: 0 44px; }
  .testimonials-slider-btn { width: 40px; height: 40px; font-size: 1.5rem; }
  .testimonials-slider-btn--prev { left: 4px; }
  .testimonials-slider-btn--next { right: 4px; }
  .testimonial-slide { padding: 20px 8px 28px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
  .testimonial-card,
  .testimonial-slide { padding: 28px 24px; }
}

/* ── FLOATING WHATSAPP BUTTON ── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  background: #25D366; border-radius: 50px;
  display: flex; align-items: center; gap: 10px;
  padding: 14px 20px; text-decoration: none;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: floatIn 1s 1.5s both;
}
.whatsapp-float:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 16px 40px rgba(37,211,102,0.55); }
@keyframes floatIn { from { transform: translateY(80px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.wa-pulse {
  position: absolute; inset: -6px; border-radius: 50px;
  background: rgba(37,211,102,0.25); animation: waPulse 2s ease infinite;
}
@keyframes waPulse { 0%,100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.1); opacity: 0; } }
.wa-label { color: white; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.5px; white-space: nowrap; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav.container { padding: 12px 24px; flex-wrap: wrap; }
  .nav-toggle { display: flex; min-width: 44px; min-height: 44px; }
  nav ul {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 20px 0 10px;
    border-top: 1px solid rgba(77,184,200,0.2);
    margin-top: 12px;
  }
  nav ul.open { display: flex; }
  nav ul li { width: 100%; text-align: center; }
  nav ul a { display: block; padding: 14px 16px; min-height: 44px; box-sizing: border-box; }
  .logo-text { font-size: 1.2rem; }
  .nav-logo-img { height: 40px; width: 40px; }
  .hero { padding: 100px 24px 50px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-inner--center .hero-btns { justify-content: center; }
  .hero h1 { font-size: clamp(1.75rem, 6vw, 2.5rem); word-wrap: break-word; }
  .hero-sub { max-width: 100%; font-size: 1rem; }
  .hero-btns { gap: 12px; justify-content: center; }
  .btn-primary, .btn-outline { min-height: 48px; padding: 14px 28px; }
  .hero-logo-bg { display: none; }
  .about-section { padding: 50px 0 40px; }
  .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-video-wrap { max-width: 100%; }
  .about-video-wrap video { max-height: 260px; }
  .about-text h2 { font-size: clamp(1.5rem, 5vw, 2rem); }
  .container { padding: 0 24px; }
  .why-us-section { padding: 60px 0; }
  .why-us-heading { font-size: clamp(1.4rem, 5vw, 2rem); line-height: 1.25; }
  .why-us-text { max-width: 100%; }
  .why-us-card { padding: 24px 20px; }
  .why-us-tags { gap: 6px; }
  .why-us-tags span { font-size: 0.75rem; padding: 5px 12px; }
  .stats-grid { grid-template-columns: 1fr; gap: 16px; }
  .stats-card { padding: 32px 24px; }
  .how-grid { flex-direction: column; }
  .how-arrow { transform: rotate(90deg); padding: 10px 0; }
  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .service-card { padding: 28px 20px; }
  .contact-card-bold { padding: 32px 24px; }
  .contact-card-bold h2 { font-size: clamp(1.4rem, 5vw, 1.8rem); }
  .contact-info-wrap { flex-direction: column; align-items: stretch; }
  .contact-box { padding: 20px 24px; width: 100%; box-sizing: border-box; }
  .whatsapp-float { padding: 14px; border-radius: 50%; min-width: 52px; min-height: 52px; justify-content: center; }
  .wa-label { display: none; }
  .section-header h2 { font-size: clamp(1.5rem, 5vw, 2rem); }
  .service-page-breadcrumb { padding: 90px 0 16px; }
  .service-page-hero h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .service-page-hero { padding: 0 0 36px; margin-bottom: 36px; }
  .service-page-content ul { margin-left: 16px; }
  .service-page-cta { padding: 40px 0 60px; }
  .service-page-cta h2 { font-size: clamp(1.25rem, 4.5vw, 1.6rem); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  nav.container { padding: 10px 16px; }
  .hero { padding: 90px 16px 40px; }
  .hero h1 { font-size: 1.65rem; }
  .about-video-wrap video { max-height: 220px; }
  .about-section { padding: 40px 0 32px; }
  .why-us-section { padding: 50px 0; }
  .why-us-tag { padding: 6px 14px; font-size: 0.75rem; }
  .why-us-checklist li { padding: 10px 16px; font-size: 0.85rem; }
  .contact-card-bold { padding: 28px 16px; }
  .contact-box { padding: 18px 16px; }
  .service-page-breadcrumb { padding: 85px 0 12px; font-size: 0.85rem; }
  .service-page-breadcrumb span { margin: 0 4px; }
  .service-example-card { padding: 22px 18px; }
  .whatsapp-float { bottom: 20px; right: 20px; }
}