﻿/* ==========================================================================
   MELBOURNE WEB DESIGN — MASTER STYLESHEET
   Mobile-first. Breakpoints: 480 / 768 / 1024 / 1200
   Table of contents:
   1.  Custom properties / variables
   2.  Reset & base
   3.  Typography
   4.  Layout utilities
   5.  Buttons
   6.  Header & navigation
   7.  Hero (home) & page hero (inner pages)
   8.  Sections generic
   9.  Service / value / team cards
   10. Checklist
   11. Stats band
   12. Process steps
   13. Portfolio
   14. Testimonials
   15. FAQ accordion
   16. Forms (general + multi-step + scheduler)
   17. Footer
   18. Back to top
   19. Scroll reveal + misc animations
   20. Media queries
   21. Reduced motion
   ========================================================================== */

/* ---------- 1. Custom properties ---------- */
:root {
  --navy-dark: #12234A;
  --blue-deep: #0D457D;
  --blue-ocean: #0E7AA4;
  --teal: #1CABB8;
  --aqua-light: #67C3C8;
  --white: #FFFFFF;
  --grey-light: #F4F7FA;
  --grey-text: #5E7289;
  --gradient-brand: linear-gradient(135deg, #0D457D 0%, #0E7AA4 50%, #1CABB8 100%);
  --overlay-hero: linear-gradient(rgba(18,35,74,0.75), rgba(13,69,125,0.6));

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 10px rgba(18,35,74,0.08);
  --shadow-md: 0 10px 30px rgba(18,35,74,0.12);
  --shadow-lg: 0 20px 50px rgba(18,35,74,0.18);
  --transition: 0.3s ease;
  --header-height: 78px;
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--navy-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

[hidden] { display: none !important; }

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

input, textarea, select { font-family: inherit; font-size: 1rem; }

svg { display: block; }

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}

/* ---------- 3. Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.2;
}

h1 { font-size: clamp(2.1rem, 4.5vw + 1rem, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3vw + 1rem, 2.6rem); }
h3 { font-size: clamp(1.2rem, 1.4vw + 1rem, 1.5rem); }
h4 { font-size: clamp(1.05rem, 1vw + 0.9rem, 1.2rem); }

p { color: var(--grey-text); }

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(28,171,184,0.1);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 44px;
}

.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-heading p { margin-top: 14px; font-size: 1.05rem; }

.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- 4. Layout utilities ---------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 70px 0; }
.section-alt { background: var(--grey-light); }
.section-navy { background: var(--navy-dark); color: var(--white); }
.section-navy p { color: rgba(255,255,255,0.75); }
.section-navy h2, .section-navy h3 { color: var(--white); }

.grid { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }
.grid-6 { grid-template-columns: repeat(2, 1fr); }

.two-col {
  display: grid;
  gap: 40px;
  align-items: center;
}

.two-col.reverse .two-col-media { order: -1; }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
  .two-col { grid-template-columns: 1fr 1fr; gap: 60px; }
  .two-col.reverse .two-col-media { order: 2; }
}

.media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--grey-light);
  box-shadow: var(--shadow-md);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.media-frame.ratio-16-9 { aspect-ratio: 16 / 9; }
.media-frame.ratio-4-3 { aspect-ratio: 4 / 3; }
.media-frame.ratio-1-1 { aspect-ratio: 1 / 1; }
.media-frame.ratio-3-4 { aspect-ratio: 3 / 4; }

/* ---------- 5. Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 15px 32px;
  border-radius: 50px;
  min-height: 44px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}

.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--blue-ocean);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}

.btn-secondary:hover, .btn-secondary:focus-visible {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}

.btn-white:hover, .btn-white:focus-visible {
  background: var(--white);
  color: var(--navy-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-block { width: 100%; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  transform: scale(0);
  animation: ripple-anim 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple-anim {
  to { transform: scale(3); opacity: 0; }
}

/* ---------- 6. Header & navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.site-header.scrolled {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  min-height: var(--header-height);
}

.logo img {
  max-height: 56px;
  width: auto;
  transition: max-height var(--transition);
}

@media (min-width: 768px) {
  .logo img { max-height: 72px; }
}

.main-nav {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-list > li { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 10px 16px;
  color: var(--navy-dark);
  border-radius: 6px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-item.active > .nav-link::after {
  transform: scaleX(1);
}

.nav-item.active > .nav-link { color: var(--teal); }

.nav-caret { width: 10px; height: 10px; transition: transform var(--transition); }
.nav-item.has-dropdown:hover .nav-caret,
.nav-item.has-dropdown:focus-within .nav-caret { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 540px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 14px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.nav-item.has-dropdown:hover .dropdown-menu,
.nav-item.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--navy-dark);
  transition: background var(--transition), color var(--transition), padding-left var(--transition);
}

.dropdown-menu a:hover, .dropdown-menu a:focus-visible {
  background: var(--grey-light);
  color: var(--teal);
  padding-left: 20px;
}

.header-actions { display: flex; align-items: center; gap: 14px; }

.header-cta { display: none; }

@media (min-width: 1024px) {
  .main-nav { display: block; }
  .header-cta { display: inline-flex; }
}

/* Hamburger */
.hamburger {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1200;
}

.hamburger span {
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--navy-dark);
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}

.hamburger span:nth-child(1) { transform: translateY(-7px); }
.hamburger span:nth-child(3) { transform: translateY(7px); }

.hamburger.active span:nth-child(1) { transform: rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg); }

@media (min-width: 1024px) { .hamburger { display: none; } }

/* Mobile nav */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18,35,74,0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  z-index: 1050;
}

.mobile-nav-overlay.active { opacity: 1; visibility: visible; }

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(85vw, 360px);
  background: var(--white);
  z-index: 1100;
  padding: 100px 30px 40px;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.mobile-nav.active { transform: translateX(0); }

.mobile-nav-list li {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-nav.active .mobile-nav-list li { opacity: 1; transform: translateX(0); }

.mobile-nav-list li:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav-list li:nth-child(2) { transition-delay: 0.1s; }
.mobile-nav-list li:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav-list li:nth-child(4) { transition-delay: 0.2s; }
.mobile-nav-list li:nth-child(5) { transition-delay: 0.25s; }
.mobile-nav-list li:nth-child(6) { transition-delay: 0.3s; }

.mobile-nav-list a {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 14px 4px;
  border-bottom: 1px solid var(--grey-light);
  min-height: 44px;
}

.mobile-nav .btn { margin-top: 24px; }

.mobile-accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.mobile-accordion-toggle svg { transition: transform var(--transition); width: 14px; height: 14px; }
.mobile-accordion-toggle.active svg { transform: rotate(180deg); }

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.mobile-submenu a { padding-left: 20px; font-weight: 500; font-size: 1rem; }

.mobile-nav-close {
  position: absolute;
  top: 26px;
  right: 26px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--navy-dark);
}

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-brand);
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  animation: float-shape 8s ease-in-out infinite;
}

.hero-shape.s1 { width: 220px; height: 220px; top: 8%; left: 6%; animation-duration: 9s; }
.hero-shape.s2 { width: 140px; height: 140px; top: 62%; left: 12%; animation-duration: 7s; animation-delay: 1s; }
.hero-shape.s3 { width: 180px; height: 180px; top: 20%; right: 8%; animation-duration: 10s; animation-delay: 0.5s; }
.hero-shape.s4 { width: 90px; height: 90px; bottom: 12%; right: 18%; animation-duration: 6s; animation-delay: 1.5s; }
.hero-shape.square { border-radius: 16px; transform: rotate(20deg); }

@keyframes float-shape {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(15deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 60px 0 110px;
  color: var(--white);
}

.hero-content h1 { color: var(--white); margin-bottom: 20px; }

.hero-content .lead {
  color: rgba(255,255,255,0.88);
  font-size: clamp(1.05rem, 1.2vw + 0.9rem, 1.25rem);
  max-width: 620px;
  margin-bottom: 30px;
}

.typewriter-line {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--aqua-light);
  font-size: clamp(1.1rem, 1.5vw + 0.9rem, 1.5rem);
  margin-bottom: 18px;
  min-height: 1.6em;
}

.typewriter-cursor {
  display: inline-block;
  width: 3px;
  background: var(--aqua-light);
  margin-left: 3px;
  animation: blink-cursor 0.9s steps(1) infinite;
}

@keyframes blink-cursor { 50% { opacity: 0; } }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 34px; }

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.trust-strip .stars { color: #FFC94A; letter-spacing: 2px; }

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
}

.hero-wave svg { width: 100%; height: auto; display: block; }

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  background: var(--gradient-brand);
  padding: calc(var(--header-height) + 70px) 0 90px;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.page-hero h1 { color: var(--white); margin-bottom: 14px; }

.page-hero .breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
  font-weight: 500;
}

.page-hero .breadcrumb a { color: rgba(255,255,255,0.8); }
.page-hero .breadcrumb a:hover { color: var(--white); text-decoration: underline; }
.page-hero .breadcrumb span[aria-current] { color: var(--white); }

.page-hero .lead {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255,255,255,0.85);
}

.page-hero .hero-shapes { opacity: 0.7; }

/* ---------- 9. Cards ---------- */
.icon-badge {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(28,171,184,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition), transform var(--transition);
}

.icon-badge svg { width: 30px; height: 30px; stroke: var(--teal); }

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 3px solid transparent;
}

.card::before {
  content: '';
  position: absolute;
  top: -3px; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  border-radius: 3px 3px 0 0;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card:hover::before { transform: scaleX(1); }

.card:hover .icon-badge { background: var(--teal); transform: rotate(-6deg) scale(1.05); }
.card:hover .icon-badge svg { stroke: var(--white); }

.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.95rem; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--teal);
  transition: gap var(--transition);
}

.card-link svg { width: 16px; height: 16px; transition: transform var(--transition); }
.card-link:hover { gap: 10px; }
.card-link:hover svg { transform: translateX(3px); }

/* Value / mission cards */
.value-card { text-align: center; }
.value-card .icon-badge { margin-left: auto; margin-right: auto; }

/* Team cards */
.team-card { text-align: center; }

.avatar-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  margin: 0 auto 18px;
  box-shadow: var(--shadow-md);
}

.team-card .role { color: var(--teal); font-weight: 600; font-size: 0.88rem; margin-bottom: 10px; }

/* Feature grid (what's included) */
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  padding: 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.feature-item .icon-badge { margin-bottom: 0; flex-shrink: 0; width: 48px; height: 48px; }
.feature-item .icon-badge svg { width: 24px; height: 24px; }

/* Tech pills */
.tech-pills { display: flex; flex-wrap: wrap; gap: 14px; }

.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 50px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.tech-pill:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-4px) scale(1.04);
  box-shadow: var(--shadow-md);
}

/* Benefits row */
.benefit-item { text-align: center; padding: 20px; }

/* ---------- 10. Checklist ---------- */
.checklist li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  font-weight: 500;
  color: var(--navy-dark);
}

.checklist .check-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(28,171,184,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.checklist .check-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--teal);
  stroke-width: 3;
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
  transition: stroke-dashoffset 0.5s ease;
}

.checklist.reveal-active .check-icon svg,
.checklist li.in-view .check-icon svg { stroke-dashoffset: 0; }

.media-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 160px;
}

.media-badge strong { display: block; font-family: var(--font-heading); font-size: 1.4rem; color: var(--teal); }
.media-badge span { font-size: 0.8rem; color: var(--grey-text); font-weight: 500; }

.two-col-media { position: relative; }

/* ---------- 11. Stats band ---------- */
.stats-band { padding: 60px 0; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  text-align: center;
}

@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
  color: var(--aqua-light);
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 2px;
}

.stat-item .stat-label {
  color: rgba(255,255,255,0.78);
  font-weight: 500;
  font-size: 0.92rem;
  margin-top: 6px;
}

/* ---------- 12. Process steps ---------- */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  position: relative;
}

@media (min-width: 768px) {
  .process-steps { grid-template-columns: repeat(4, 1fr); }
  .process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--teal) 0 8px, transparent 8px 16px);
    z-index: 0;
  }
}

.process-step { text-align: center; position: relative; z-index: 1; }

.process-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  color: var(--teal);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0 auto 18px;
  transition: background 0.5s ease, color 0.5s ease, transform 0.5s ease;
}

.process-step.in-view .process-number {
  background: var(--teal);
  color: var(--white);
  transform: scale(1.08);
}

.process-step h3 { margin-bottom: 8px; }
.process-step p { font-size: 0.92rem; }

/* ---------- 13. Portfolio ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--grey-light);
  background: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy-dark);
  transition: all var(--transition);
  min-height: 44px;
}

.filter-btn:hover { border-color: var(--teal); color: var(--teal); }
.filter-btn.active { background: var(--teal); border-color: var(--teal); color: var(--white); }

.portfolio-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }

@media (min-width: 768px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }

.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), opacity 0.4s ease, scale 0.4s ease;
}

.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.portfolio-card.hidden-item { display: none; }

.portfolio-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--grey-light);
}

.portfolio-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.portfolio-card:hover .portfolio-media img { transform: scale(1.08); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(18,35,74,0.15), rgba(13,69,125,0.85));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transition: opacity var(--transition);
  padding: 20px;
  text-align: center;
}

.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay span { color: var(--white); font-family: var(--font-heading); font-weight: 600; }

.portfolio-body { padding: 22px; }

.category-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

.portfolio-result {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue-ocean);
  margin-top: 8px;
}

/* ---------- 14. Testimonials ---------- */
.testimonial-slider { position: relative; max-width: 780px; margin: 0 auto; }

.testimonial-track { position: relative; min-height: 260px; }

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(30px);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
  text-align: center;
  padding: 20px;
}

.testimonial-slide.active { opacity: 1; visibility: visible; transform: translateX(0); position: relative; }

.testimonial-slide .stars { color: #FFC94A; letter-spacing: 3px; margin-bottom: 18px; }

.testimonial-slide blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.4vw + 0.8rem, 1.35rem);
  color: var(--navy-dark);
  font-weight: 500;
  margin-bottom: 22px;
}

.testimonial-author strong { display: block; font-family: var(--font-heading); }
.testimonial-author span { font-size: 0.85rem; color: var(--grey-text); }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
}

.slider-arrow:hover { background: var(--teal); transform: scale(1.08); }
.slider-arrow:hover svg { stroke: var(--white); }
.slider-arrow svg { width: 18px; height: 18px; stroke: var(--navy-dark); }

.slider-dots { display: flex; gap: 10px; }

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--grey-light);
  transition: background var(--transition), transform var(--transition);
}

.slider-dot.active { background: var(--teal); transform: scale(1.3); }

/* ---------- 15. FAQ accordion ---------- */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  text-align: left;
  min-height: 44px;
}

.faq-question .faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  position: relative;
}

.faq-question .faq-icon::before,
.faq-question .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--teal);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform var(--transition);
}

.faq-question .faq-icon::before { width: 14px; height: 2px; }
.faq-question .faq-icon::after { width: 2px; height: 14px; }

.faq-item.active .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg) scaleY(0); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner { padding: 0 24px 22px; font-size: 0.95rem; }

/* ---------- 16. Forms ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 30px 22px;
}

@media (min-width: 768px) { .form-card { padding: 44px; } }

.form-group { margin-bottom: 20px; position: relative; }

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.form-group .required { color: var(--teal); }

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #E3E9F0;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 44px;
}

textarea.form-control { min-height: 130px; resize: vertical; }

.form-control:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(28,171,184,0.14);
  outline: none;
}

.form-control.error { border-color: #E5484D; animation: shake 0.4s ease; }
.form-control.success { border-color: #2FAE60; }

.error-message {
  color: #E5484D;
  font-size: 0.82rem;
  margin-top: 6px;
  display: none;
  font-weight: 500;
}

.form-control.error + .error-message,
.form-group.error .error-message { display: block; }

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

.form-row { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .form-row.cols-2 { grid-template-columns: 1fr 1fr; } }

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--grey-text);
}

.checkbox-row input { width: 20px; height: 20px; flex-shrink: 0; accent-color: var(--teal); margin-top: 2px; }

/* Radio cards (step 2 service selection) */
.radio-card-group { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 640px) { .radio-card-group { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .radio-card-group { grid-template-columns: repeat(5, 1fr); } }

.radio-card { position: relative; }

.radio-card input { position: absolute; opacity: 0; }

.radio-card label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 18px 10px;
  border: 2px solid #E3E9F0;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-dark);
  min-height: 90px;
  transition: all var(--transition);
}

.radio-card input:checked + label {
  border-color: var(--teal);
  background: rgba(28,171,184,0.08);
  color: var(--teal);
}

.radio-card label svg { width: 26px; height: 26px; stroke: var(--teal); }

/* Multi-step form */
.step-progress { margin-bottom: 36px; }

.step-progress-bar {
  height: 6px;
  background: var(--grey-light);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 14px;
}

.step-progress-fill {
  height: 100%;
  width: 33.33%;
  background: var(--gradient-brand);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.step-labels { display: flex; justify-content: space-between; font-size: 0.8rem; font-weight: 600; color: var(--grey-text); }
.step-labels .step-label.active { color: var(--teal); }

.form-steps { position: relative; overflow: hidden; }

.form-step {
  display: none;
  animation: step-in 0.4s ease;
}

.form-step.active { display: block; }

@keyframes step-in {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}

.step-nav { display: flex; justify-content: space-between; gap: 14px; margin-top: 10px; }
.step-nav .btn-secondary:only-child { margin-left: auto; }

/* Success card */
.success-card { text-align: center; padding: 30px 10px; }

.success-check {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
}

.success-check circle {
  stroke: var(--teal);
  stroke-width: 3;
  fill: none;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: draw-circle 0.6s ease forwards;
}

.success-check path {
  stroke: var(--teal);
  stroke-width: 4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: draw-check 0.4s ease forwards 0.6s;
}

@keyframes draw-circle { to { stroke-dashoffset: 0; } }
@keyframes draw-check { to { stroke-dashoffset: 0; } }

.success-card h3 { margin-bottom: 10px; }

/* Scheduler / calendar widget */
.scheduler-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
@media (min-width: 900px) { .scheduler-grid { grid-template-columns: 1fr 1fr; } }

.calendar-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 24px;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.calendar-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.calendar-nav-btn:hover { background: var(--teal); }
.calendar-nav-btn:hover svg { stroke: var(--white); }
.calendar-nav-btn svg { width: 16px; height: 16px; stroke: var(--navy-dark); }
.calendar-nav-btn:disabled { opacity: 0.3; pointer-events: none; }

.calendar-title { font-family: var(--font-heading); font-weight: 700; }

.calendar-weekdays, .calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  text-align: center;
}

.calendar-weekdays span { font-size: 0.75rem; font-weight: 700; color: var(--grey-text); padding-bottom: 8px; }

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.88rem;
  font-weight: 500;
  min-height: 38px;
  transition: background var(--transition), color var(--transition);
}

.calendar-day.empty { visibility: hidden; }
.calendar-day.disabled { color: #C9D2DD; pointer-events: none; }
.calendar-day.selectable { cursor: pointer; }
.calendar-day.selectable:hover { background: rgba(28,171,184,0.14); }
.calendar-day.selected { background: var(--teal); color: var(--white); font-weight: 700; }
.calendar-day.today { border: 2px solid var(--teal); }

.time-slots-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 24px;
}

.time-slots-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 16px; }
@media (min-width: 420px) { .time-slots-grid { grid-template-columns: repeat(3, 1fr); } }

.time-slot {
  padding: 12px 8px;
  border-radius: 50px;
  border: 2px solid #E3E9F0;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  transition: all var(--transition);
  min-height: 44px;
}

.time-slot:hover { border-color: var(--teal); color: var(--teal); }
.time-slot.selected { background: var(--teal); border-color: var(--teal); color: var(--white); }

.scheduler-placeholder { color: var(--grey-text); font-size: 0.92rem; text-align: center; padding: 30px 10px; }

.booking-summary {
  background: rgba(28,171,184,0.08);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--navy-dark);
}

.reassurance-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  text-align: center;
  margin-top: 30px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue-ocean);
}

.contact-fallback-card {
  background: var(--navy-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  margin-top: 50px;
}

.contact-fallback-card a { color: var(--aqua-light); font-weight: 600; }

.quote-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.quote-tab-btn {
  padding: 12px 26px;
  border-radius: 50px;
  border: 2px solid var(--grey-light);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  min-height: 44px;
}

.quote-tab-btn.active { background: var(--teal); border-color: var(--teal); color: var(--white); }

/* Info / contact cards */
.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.info-card .icon-badge { margin: 0 auto 18px; }
.info-card a { color: var(--teal); font-weight: 600; }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/9;
}

.map-frame iframe { width: 100%; height: 100%; border: 0; }

.hours-block {
  background: var(--grey-light);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-weight: 600;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--gradient-brand);
  color: var(--white);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 30px; }

.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; align-items: center; }

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
}

.cta-phone svg { width: 20px; height: 20px; stroke: var(--white); }

/* ---------- 17. Footer ---------- */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.75); padding: 70px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }

.footer-col h4 { color: var(--white); margin-bottom: 20px; font-size: 1.05rem; }

.footer-col p { font-size: 0.92rem; margin-bottom: 20px; }

.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 0.92rem; transition: color var(--transition), padding-left var(--transition); }
.footer-links a:hover { color: var(--aqua-light); padding-left: 4px; }

.footer-contact li { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; font-size: 0.92rem; }
.footer-contact svg { width: 18px; height: 18px; stroke: var(--aqua-light); flex-shrink: 0; }
.footer-contact a:hover { color: var(--aqua-light); }

.social-icons { display: flex; gap: 12px; }

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
}

.social-icons a:hover { background: var(--teal); transform: translateY(-4px); }
.social-icons svg { width: 18px; height: 18px; stroke: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
}

/* ---------- 18. Back to top ---------- */
.back-to-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition), background var(--transition);
  z-index: 900;
}

.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--blue-ocean); }
.back-to-top svg { width: 20px; height: 20px; stroke: var(--white); }

/* ---------- 19. Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.fade-in { transform: none; }
.reveal.slide-left { transform: translateX(-40px); }
.reveal.slide-right { transform: translateX(40px); }
.reveal.zoom-in { transform: scale(0.92); }

.reveal.in-view { opacity: 1; transform: none; }

/* ---------- 20. Media queries (component-level extra) ---------- */
@media (min-width: 480px) {
  .hero-ctas .btn { width: auto; }
}

@media (max-width: 479px) {
  .hero-ctas .btn { width: 100%; }
  .cta-actions .btn { width: 100%; }
}

@media (min-width: 1200px) {
  .container { padding: 0 24px; }
}

/* ---------- 21. Tech / Tools Band ---------- */
.tech-band {
  background: var(--grey-light);
  padding: 50px 0;
  overflow: hidden;
}

.tech-band .section-tag { margin-bottom: 24px; }

.tech-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px 40px;
}

.tech-logo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy-dark);
  opacity: 0.55;
  transition: opacity var(--transition), transform var(--transition);
}

.tech-logo-item:hover {
  opacity: 1;
  transform: scale(1.08);
}

.tech-logo-item svg {
  width: 32px;
  height: 32px;
  stroke: var(--blue-ocean);
}

/* ---------- 22. Industry Expertise ---------- */
.industry-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border-bottom: 3px solid transparent;
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--teal);
}

.industry-card .icon-badge {
  margin: 0 auto 16px;
}

.industry-card h4 { margin-bottom: 8px; }
.industry-card p { font-size: 0.9rem; }

/* ---------- 23. Service Page Enquiry Form ---------- */
.service-form-section {
  background: var(--navy-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.service-form-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(28,171,184,0.08);
  pointer-events: none;
}

.service-form-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(14,122,164,0.06);
  pointer-events: none;
}

.service-form-section h2 { color: var(--white); }
.service-form-section p { color: rgba(255,255,255,0.8); }
.service-form-section .section-tag { background: rgba(28,171,184,0.2); }

.service-form-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 1024px) {
  .service-form-grid { grid-template-columns: 1fr 1fr; gap: 60px; }
}

.service-form-info {
  position: relative;
  z-index: 1;
}

.service-form-info .checklist li {
  color: rgba(255,255,255,0.9);
}

.service-form-info .check-icon {
  background: rgba(28,171,184,0.2);
}

.service-form-card {
  position: relative;
  z-index: 1;
}

/* ---------- 24. Demo Page Hero ---------- */
.demo-hero {
  position: relative;
  background: var(--gradient-brand);
  padding: calc(var(--header-height) + 50px) 0 60px;
  overflow: hidden;
  color: var(--white);
}

.demo-hero h1 { color: var(--white); margin-bottom: 16px; }
.demo-hero .lead { color: rgba(255,255,255,0.88); max-width: 600px; }

.demo-hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 1024px) {
  .demo-hero-grid { grid-template-columns: 1fr 1.1fr; gap: 60px; }
}

.demo-form-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 30px 22px;
}

@media (min-width: 768px) {
  .demo-form-card { padding: 40px 36px; }
}

.demo-form-card label { color: rgba(255,255,255,0.95); }
.demo-form-card .required { color: var(--aqua-light); }

.demo-form-card .form-control {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}

.demo-form-card .form-control::placeholder {
  color: rgba(255,255,255,0.45);
}

.demo-form-card .form-control:focus {
  border-color: var(--aqua-light);
  box-shadow: 0 0 0 4px rgba(103,195,200,0.2);
}

.demo-form-card select.form-control {
  color: var(--white);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2367C3C8' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.demo-form-card select.form-control option {
  background: var(--navy-dark);
  color: var(--white);
}

.demo-trust-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.demo-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.demo-trust-item .check-icon {
  background: rgba(28,171,184,0.2);
  flex-shrink: 0;
}

.demo-trust-item strong {
  display: block;
  color: var(--white);
  font-family: var(--font-heading);
  margin-bottom: 4px;
}

.demo-trust-item span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

/* ---------- 25. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
