/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #1a6cff;
  --blue-dark: #1558d6;
  --blue-light: #e8f0ff;
  --green: #25d366;
  --green-dark: #1da851;
  --dark: #0f172a;
  --dark-2: #1e293b;
  --mid: #475569;
  --light: #94a3b8;
  --bg: #f8fafc;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.12);
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,108,255,0.35); }

.btn-glass {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-glass:hover { background: rgba(255,255,255,0.22); transform: translateY(-1px); }

.btn-glass-green {
  background: rgba(37,211,102,0.25);
  color: var(--white);
  border: 1px solid rgba(37,211,102,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-glass-green:hover { background: rgba(37,211,102,0.4); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,0.25); }

.btn-whatsapp {
  background: var(--green);
  color: var(--white);
}
.btn-whatsapp:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }

.btn-large { padding: 18px 36px; font-size: 17px; width: 100%; justify-content: center; }

.whatsapp-icon { width: 20px; height: 20px; flex-shrink: 0; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: all var(--transition);
  animation: slideDown 0.8s ease both;
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  border-bottom-color: rgba(0,0,0,0.06);
}

.navbar.scrolled .logo-text { color: var(--dark); }
.navbar.scrolled .nav-links a:not(.btn) { color: var(--dark); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
}

.logo-icon { font-size: 24px; line-height: 1; }
.logo-text strong { font-weight: 800; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a:not(.btn) {
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}

.nav-links a:not(.btn):hover { color: var(--white); background: rgba(255,255,255,0.1); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar.scrolled .hamburger span { background: var(--dark); }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 60px;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1518770660439-4636190af475?w=1920&auto=format&fit=crop&q=80');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  text-align: left;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}

/* Staggered entrance animations for hero items */
.anim-item {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
}

.hero-badge.anim-item   { animation-delay: 0.15s; }
.hero h1.anim-item      { animation-delay: 0.30s; }
.hero-sub.anim-item     { animation-delay: 0.45s; }
.hero-cta.anim-item     { animation-delay: 0.60s; }
.hero-trust.anim-item   { animation-delay: 0.75s; }

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}

.hero h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.highlight {
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(16px, 2.5vw, 20px);
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 500;
}

.trust-icon {
  width: 20px;
  height: 20px;
  background: rgba(37,211,102,0.2);
  border: 1px solid rgba(37,211,102,0.5);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #4ade80;
  flex-shrink: 0;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(8px); opacity: 1; }
}

/* ===== SECTION SHARED ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.section-header p {
  font-size: 17px;
  color: var(--mid);
  max-width: 520px;
  margin: 0 auto;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid #e8edf5;
  position: relative;
  transition: all var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}

.service-card.featured {
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  border-color: transparent;
  color: var(--white);
}

.service-card.featured h3 { color: var(--white); }
.service-card.featured li { color: rgba(255,255,255,0.8); }
.service-card.featured li::before { background: rgba(96,165,250,0.6); }

.service-badge {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}

.service-icon {
  font-size: 40px;
  margin-bottom: 18px;
  line-height: 1;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.service-card ul { display: flex; flex-direction: column; gap: 10px; }

.service-card li {
  font-size: 14px;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-card li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 100px 0;
  background: var(--white);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 60px;
  position: relative;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.step-connector {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), #93c5fd);
  flex-shrink: 0;
  margin-top: 36px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--blue), #60a5fa);
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(26,108,255,0.3);
}

.step-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.step-content p { font-size: 15px; color: var(--mid); line-height: 1.7; }

.service-modes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mode-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid #e8edf5;
  text-align: center;
  transition: all var(--transition);
}

.mode-card:hover { border-color: var(--blue); box-shadow: var(--shadow); }

.mode-icon {
  font-size: 48px;
  margin-bottom: 16px;
  line-height: 1;
}

.mode-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.mode-card p { font-size: 15px; color: var(--mid); }

/* ===== COVERAGE ===== */
.coverage {
  padding: 100px 0;
  background: var(--bg);
}

.coverage-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.coverage-text .section-tag { margin-bottom: 12px; }
.coverage-text h2 { margin-bottom: 16px; }
.coverage-text > p { color: var(--mid); margin-bottom: 32px; font-size: 16px; line-height: 1.8; }

.coverage-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }

.coverage-list li {
  display: flex;
  align-items: center;
  gap: 16px;
}

.coverage-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

.coverage-dot.primary { background: var(--blue); box-shadow: 0 0 0 4px rgba(26,108,255,0.15); }
.coverage-dot.secondary { background: #f59e0b; box-shadow: 0 0 0 4px rgba(245,158,11,0.15); }
.coverage-dot.remote { background: var(--green); box-shadow: 0 0 0 4px rgba(37,211,102,0.15); }

.coverage-list li div { display: flex; flex-direction: column; gap: 2px; }
.coverage-list li strong { font-size: 15px; font-weight: 600; color: var(--dark); }
.coverage-list li span { font-size: 13px; color: var(--light); }

.coverage-map { display: flex; align-items: center; justify-content: center; }

.map-card {
  width: 100%;
  max-width: 420px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid #e8edf5;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.map-visual {
  height: 340px;
  background: linear-gradient(160deg, #dbeafe 0%, #e0f2fe 40%, #bfdbfe 70%, #93c5fd 100%);
  position: relative;
  overflow: hidden;
}

.map-road {
  position: absolute;
  left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.5);
  top: 50%;
  transform: translateY(-50%);
}

.map-label.lake-label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: rgba(30,64,175,0.6);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.map-pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: default;
}

.pin-toronto { top: 30%; left: 25%; }
.pin-whitby { top: 30%; right: 20%; }

.pin-dot {
  width: 16px;
  height: 16px;
  background: var(--blue);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.pin-label {
  background: var(--white);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  white-space: nowrap;
}

.map-ripple {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(26,108,255,0.3);
  animation: ripple 3s ease-out infinite;
}

.ripple-toronto { width: 80px; height: 80px; top: calc(30% - 32px); left: calc(25% - 32px); }
.ripple-whitby { width: 80px; height: 80px; top: calc(30% - 32px); right: calc(20% - 32px); animation-delay: 1.5s; }

@keyframes ripple {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-text h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.contact-text > p {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.contact-details { display: flex; flex-direction: column; gap: 16px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
}

.contact-icon { font-size: 20px; flex-shrink: 0; }

.contact-card {
  display: flex;
  justify-content: center;
}

.contact-card-inner {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  width: 100%;
  max-width: 380px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.whatsapp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e8fdf0;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.whatsapp-badge svg { width: 16px; height: 16px; }

.contact-card-inner h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.contact-card-inner > p {
  font-size: 15px;
  color: var(--mid);
  margin-bottom: 28px;
  line-height: 1.6;
}

.contact-note {
  font-size: 13px !important;
  color: var(--light) !important;
  margin-top: 16px !important;
  margin-bottom: 0 !important;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo { margin-bottom: 16px; color: var(--white); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); max-width: 280px; line-height: 1.7; }

.footer-links {
  display: flex;
  gap: 48px;
}

.footer-col { display: flex; flex-direction: column; gap: 12px; }

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 999;
  transition: all var(--transition);
}

.whatsapp-float:hover {
  background: var(--green-dark);
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}

.whatsapp-float svg { width: 32px; height: 32px; color: var(--white); }

/* ===== MOBILE — TABLET 768px ===== */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-inner { grid-template-columns: 1fr; gap: 40px; }
  .coverage-map { order: -1; }
  .map-card { max-width: 100%; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
    z-index: 999;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a:not(.btn) {
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    padding: 12px 24px;
  }

  .nav-links .btn {
    font-size: 18px;
    padding: 16px 36px;
    margin-top: 8px;
  }

  .hamburger { display: flex; z-index: 1000; }

  /* Hero */
  .hero { padding: 120px 0 80px; min-height: unset; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-trust { gap: 12px; }

  /* Steps */
  .steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .step-connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--blue), #93c5fd);
    margin: 0;
  }

  .step { max-width: 360px; }

  /* Service modes */
  .service-modes { grid-template-columns: 1fr; }

  /* Contact card */
  .contact-card-inner { max-width: 100%; padding: 32px 24px; }

  /* Footer */
  .footer-links { flex-direction: column; gap: 24px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }

  .hero h1 { font-size: 32px; letter-spacing: -0.5px; }
  .hero-sub { font-size: 16px; }

  .section-header h2 { font-size: 26px; }
  .section-header p { font-size: 15px; }

  .service-card { padding: 28px 22px; }
  .mode-card { padding: 28px 22px; }

  .steps { gap: 0; }
  .step-number { width: 60px; height: 60px; font-size: 18px; }

  .contact-text h2 { font-size: 28px; }

  .whatsapp-float { width: 52px; height: 52px; bottom: 20px; right: 20px; }
  .whatsapp-float svg { width: 26px; height: 26px; }

  .container { padding: 0 16px; }

  .services, .how-it-works, .coverage, .contact { padding: 72px 0; }
  .footer { padding: 48px 0 0; }

  .map-visual { height: 260px; }

  .hero-badge { font-size: 12px; padding: 7px 14px; }
  .trust-item { font-size: 13px; }
}

/* Touch device tap highlight */
@media (hover: none) {
  .btn:active { transform: scale(0.97); }
  .service-card:active { transform: translateY(-2px); }
}
