/* ============================================
   MASTER ODOR REMOVAL UTAH
   Brand Colors from Logo:
   Blue:  #2D2DB8  (royal cobalt oval)
   Green: #7DC826  (lime text & swoosh)
   ============================================ */

:root {
  --blue:       #2D2DB8;
  --blue-dark:  #1e1e82;
  --blue-light: #3d3dd4;
  --green:      #7DC826;
  --green-dark: #5fa01c;
  --white:      #ffffff;
  --off-white:  #f7f9fc;
  --grey-light: #eef1f6;
  --grey:       #888ea8;
  --dark:       #1a1a2e;
  --text:       #2c2c3e;
  --text-light: #555770;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── UTILITY ─────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

/* ── BUTTONS ─────────────────────────────── */
.btn {
  display: inline-block;
  padding: 15px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}
.btn-green {
  background: var(--green);
  color: var(--white);
}
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-blue {
  background: var(--blue);
  color: var(--white);
}
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--blue); }

/* ── TOPBAR ──────────────────────────────── */
.topbar {
  background: var(--dark);
  padding: 8px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: var(--green); font-weight: 700; }
.topbar a:hover { color: var(--white); }

/* ── NAVIGATION ──────────────────────────── */
nav {
  background: var(--blue);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: 1140px;
  margin: 0 auto;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  height: 52px;
  width: auto;
}
.nav-logo-text {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.3px;
}
.nav-logo-text span {
  display: block;
  color: var(--green);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
}
.nav-links li a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}
.nav-links li a:hover { color: var(--white); background: var(--blue-light); }
.nav-links .nav-cta a {
  background: var(--green);
  color: var(--white);
  padding: 8px 18px;
}
.nav-links .nav-cta a:hover { background: var(--green-dark); }

/* dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a::after { content: ' ▾'; font-size: 11px; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--blue-dark);
  border-top: 3px solid var(--green);
  min-width: 230px;
  display: none;
  flex-direction: column;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  z-index: 100;
}
.has-dropdown:hover .dropdown { display: flex; }
.dropdown a {
  padding: 12px 18px;
  color: rgba(255,255,255,0.85) !important;
  font-size: 13px !important;
  border-radius: 0 !important;
  background: transparent !important;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.dropdown a:hover { color: var(--green) !important; padding-left: 24px !important; }

/* mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  display: block;
  transition: all 0.3s;
}

/* ── HERO ────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center top;
  filter: brightness(0.35);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(45,45,184,0.75) 0%,
    rgba(26,26,46,0.55) 60%,
    rgba(125,200,38,0.15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 20px;
  max-width: 720px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(125,200,38,0.15);
  border: 1px solid var(--green);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 3px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero h1 em {
  color: var(--green);
  font-style: normal;
}
.hero p {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 580px;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}
.hero-phone a {
  color: var(--green);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

/* ── TRUST BAR ───────────────────────────── */
.trust-bar {
  background: var(--blue);
  padding: 20px 0;
}
.trust-bar .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}
.trust-item .check {
  width: 28px;
  height: 28px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

/* ── SECTIONS ────────────────────────────── */
.section { padding: 80px 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--dark); color: var(--white); }
.section-blue { background: var(--blue); color: var(--white); }

.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.section-title em { color: var(--green); font-style: normal; }
.section-subtitle {
  font-size: 17px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.section-dark .section-subtitle,
.section-blue .section-subtitle { color: rgba(255,255,255,0.75); }

/* ── SERVICES GRID ───────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid rgba(0,0,0,0.06);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(45,45,184,0.15);
}
.service-card-icon {
  background: var(--blue);
  padding: 28px;
  font-size: 40px;
  text-align: center;
}
.service-card-body { padding: 24px; }
.service-card-body h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--blue);
}
.service-card-body p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.65;
}
.service-card-body a {
  color: var(--green-dark);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.service-card-body a:hover { color: var(--blue); }

/* ── PM SPLIT SECTION ────────────────────── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-section .split-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}
.split-section .split-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 20%;
}
.split-section .split-content { padding: 20px 0; }
.split-section .split-content h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
}
.split-section .split-content p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.75;
}
.section-blue .split-content p { color: rgba(255,255,255,0.8); }
.split-bullets { list-style: none; margin: 24px 0 32px; }
.split-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--text-light);
}
.section-blue .split-bullets li { color: rgba(255,255,255,0.8); }
.split-bullets li::before {
  content: '✓';
  background: var(--green);
  color: var(--white);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── HOW IT WORKS ────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.step {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.step-number {
  width: 64px;
  height: 64px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  font-size: 28px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.step h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.step p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.65; }

/* ── REVIEWS ─────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.review-card {
  background: var(--white);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border: 1px solid var(--grey-light);
}
.review-stars {
  color: var(--green);
  font-size: 18px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.review-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.review-author {
  font-weight: 700;
  font-size: 14px;
  color: var(--blue);
}

/* ── CTA SECTION ─────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(125,200,38,0.12) 0%, transparent 70%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── CONTACT FORM ────────────────────────── */
.contact-form-section { padding: 80px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 16px;
}
.contact-info p { color: var(--text-light); margin-bottom: 32px; line-height: 1.7; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-detail-text strong {
  display: block;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.contact-detail-text span { color: var(--text-light); font-size: 14px; }
.contact-detail-text a { color: var(--blue); font-weight: 600; }

/* form */
.form-card {
  background: var(--white);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  border: 1px solid var(--grey-light);
}
.form-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--blue);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--grey-light);
  border-radius: 4px;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  font-family: inherit;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; padding: 16px; font-size: 16px; }

/* ── SERVICE AREA CITIES ─────────────────── */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 32px;
}
.city-tag {
  background: var(--white);
  border: 2px solid var(--grey-light);
  border-radius: 4px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  transition: all 0.2s;
}
.city-tag:hover {
  border-color: var(--green);
  color: var(--blue);
  background: rgba(125,200,38,0.06);
}

/* ── PAGE INNER HERO ─────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 4px;
  background: var(--green);
}
.page-hero h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 28px;
}
.breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--green); }

/* ── FOOTER ──────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand img { height: 64px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.footer-tagline {
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green);
  display: inline-block;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--green); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
}
.footer-contact-item strong { color: var(--white); display: block; margin-bottom: 2px; }
.footer-contact-item a { color: var(--green); font-weight: 600; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--green); }

/* ── ABOUT PAGE ──────────────────────────── */
.team-photo {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}
.team-photo img { width: 100%; height: 500px; object-fit: cover; object-position: top center; }
.guarantee-box {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: 8px;
  padding: 40px;
  color: var(--white);
  text-align: center;
  margin-top: 40px;
}
.guarantee-box .big-check {
  font-size: 48px;
  margin-bottom: 16px;
}
.guarantee-box h3 { font-size: 24px; font-weight: 900; margin-bottom: 12px; }
.guarantee-box p { color: rgba(255,255,255,0.8); font-size: 16px; line-height: 1.7; }

/* ── THANK YOU PAGE ──────────────────────── */
.thankyou-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}
.thankyou-icon { font-size: 72px; margin-bottom: 24px; }
.thankyou-page h1 { font-size: 40px; font-weight: 900; color: var(--blue); margin-bottom: 16px; }
.thankyou-page p { font-size: 18px; color: var(--text-light); max-width: 500px; margin: 0 auto 32px; }

/* ── HERO TWO-COLUMN WITH MASCOT ─────────── */
.hero-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 60px 40px;
  gap: 20px;
  position: relative;
  z-index: 2;
}

/* ── MASCOT STAGE ────────────────────────── */
.mascot-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
#scene {
  width: 100%;
  max-width: 460px;
  height: 420px;
  overflow: visible;
}
.mascot-label {
  margin-top: 8px;
  background: rgba(125,200,38,0.12);
  border: 1px solid var(--green);
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  white-space: nowrap;
}

/* ── MASCOT ANIMATIONS ───────────────────── */
.stink-group {
  animation: stinkDissolve 4s ease-in-out infinite;
  transform-origin: 310px 160px;
}
@keyframes stinkDissolve {
  0%,40%  { opacity: 1; transform: scale(1); }
  55%     { opacity: 0.6; transform: scale(1.05); }
  70%     { opacity: 0.2; transform: scale(1.15) rotate(5deg); }
  80%,100%{ opacity: 0; transform: scale(0.5) rotate(10deg); }
}
.stink-line { animation: stinkRise 2s ease-out infinite; opacity: 0; }
.stink-line:nth-child(1) { animation-delay: 0s; }
.stink-line:nth-child(2) { animation-delay: 0.6s; }
.stink-line:nth-child(3) { animation-delay: 1.2s; }
@keyframes stinkRise {
  0%   { transform: translateY(0); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 0.6; }
  100% { transform: translateY(-40px); opacity: 0; }
}
.green-spray {
  transform-origin: 278px 297px;
  opacity: 0;
  animation: sprayShoot 4s ease-out infinite;
}
@keyframes sprayShoot {
  0%,28%   { opacity: 0;   transform: scaleX(0.05) scaleY(0.05); }
  33%      { opacity: 0.9; transform: scaleX(0.25) scaleY(0.2);  }
  42%      { opacity: 1;   transform: scaleX(0.55) scaleY(0.5);  }
  54%      { opacity: 1;   transform: scaleX(0.85) scaleY(0.85); }
  64%      { opacity: 1;   transform: scaleX(1)    scaleY(1);    }
  76%      { opacity: 0.8; transform: scaleX(1.05) scaleY(1.05); }
  88%,100% { opacity: 0;   transform: scaleX(1.1)  scaleY(1.1);  }
}
.success-check {
  opacity: 0;
  transform-origin: 320px 140px;
  animation: checkAppear 4s ease-out infinite;
}
@keyframes checkAppear {
  0%,70% { opacity: 0; transform: scale(0); }
  80%    { opacity: 1; transform: scale(1.2); }
  88%    { transform: scale(1); }
  95%    { opacity: 1; }
  100%   { opacity: 0; transform: scale(0.8); }
}
.character {
  animation: charIdle 3s ease-in-out infinite;
  transform-origin: bottom center;
}
@keyframes charIdle {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-4px); }
}
.arm-group {
  transform-origin: 185px 235px;
  animation: armSwing 4s ease-in-out infinite;
}
@keyframes armSwing {
  0%,25%  { transform: rotate(0deg); }
  35%,80% { transform: rotate(-15deg); }
  90%,100%{ transform: rotate(0deg); }
}
.sparkle { opacity: 0; animation: sparkleAnim 4s ease-out infinite; }
@keyframes sparkleAnim {
  0%  { opacity: 0; transform: scale(0) rotate(0deg); }
  50% { opacity: 1; transform: scale(1) rotate(180deg); }
  100%{ opacity: 0; transform: scale(0) rotate(360deg) translateY(-20px); }
}

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 900px) {
  .split-section { grid-template-columns: 1fr; }
  .split-section .split-image { order: -1; }
  .split-section .split-image img { height: 320px; }
  .steps-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--blue-dark); flex-direction: column; padding: 16px; gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-links .has-dropdown .dropdown { position: static; display: flex; box-shadow: none; border-top: none; background: rgba(0,0,0,0.2); margin-top: 4px; }
  .nav-toggle { display: flex; }
  nav { position: sticky; }
  .hero { min-height: auto; }
  .hero-two-col { grid-template-columns: 1fr; padding: 40px 20px 20px; }
  .hero-content { padding: 0; }
  .mascot-stage { margin-top: 20px; }
  #scene { max-width: 320px; height: 300px; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-bar .container { flex-direction: column; align-items: flex-start; }
}
