/* ==========================================================================
   Plumber Done On Date Of Toronto - Modern Master Stylesheet
   Pure CSS3, Responsive, Clean Canadian Craftsmanship Aesthetic
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* --- CSS Variables & Design System Tokens --- */
:root {
  /* Brand Palette */
  --primary-navy: #0B192C;
  --primary-navy-dark: #060E18;
  --primary-navy-light: #15263F;
  --primary-navy-surface: #1E314B;
  
  /* Canadian Accent */
  --accent-red: #DA291C;
  --accent-red-hover: #BF2014;
  --accent-red-light: rgba(218, 41, 28, 0.08);
  --accent-red-border: rgba(218, 41, 28, 0.2);
  
  /* Accent Blue / Water */
  --accent-blue: #1E88E5;
  --accent-blue-soft: #EBF3FC;
  --accent-blue-light: rgba(30, 136, 229, 0.1);

  /* Neutrals & Text */
  --text-dark: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --text-white: #FFFFFF;
  
  /* Backgrounds & Surfaces */
  --bg-body: #FFFFFF;
  --bg-surface: #F8FAFC;
  --bg-surface-alt: #F1F5F9;
  --bg-card: #FFFFFF;
  --border-color: #E2E8F0;
  --border-color-subtle: #F1F5F9;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shadows */
  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px -1px rgba(11, 25, 44, 0.08), 0 2px 4px -2px rgba(11, 25, 44, 0.04);
  --shadow-lg: 0 12px 28px -4px rgba(11, 25, 44, 0.12), 0 6px 12px -4px rgba(11, 25, 44, 0.05);
  --shadow-xl: 0 20px 40px -6px rgba(11, 25, 44, 0.16), 0 10px 16px -6px rgba(11, 25, 44, 0.06);
  --shadow-red: 0 8px 20px rgba(218, 41, 28, 0.25);

  /* Border Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container-max: 1200px;
  --header-height: 80px;
  --mobile-bar-height: 64px;
}

/* --- Global Reset & Base Styles --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background-color: var(--bg-body);
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  outline: none;
}

ul, ol {
  list-style: none;
}

/* --- Typography Utilities --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.4rem);
}

h3 {
  font-size: 1.35rem;
}

h4 {
  font-size: 1.15rem;
}

p {
  color: var(--text-body);
}

.lead-text {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.65;
  color: var(--text-muted);
}

/* --- Container & Layout --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-narrow {
  max-width: 860px;
}

.section {
  padding-top: clamp(4rem, 7vw, 6.5rem);
  padding-bottom: clamp(4rem, 7vw, 6.5rem);
  position: relative;
}

.section-alt {
  background-color: var(--bg-surface);
}

.section-dark {
  background-color: var(--primary-navy);
  color: var(--text-white);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--text-white);
}

.section-dark p {
  color: var(--text-light);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 4vw, 4rem);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  background-color: var(--accent-red-light);
  color: var(--accent-red);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.9rem;
}

.section-tag.tag-blue {
  background-color: var(--accent-blue-soft);
  color: var(--accent-blue);
}

.section-tag.tag-white {
  background-color: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-title {
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* --- Buttons & Interactive CTAs --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.65rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--accent-red);
  color: var(--text-white);
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  background-color: var(--accent-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(218, 41, 28, 0.35);
}

.btn-secondary {
  background-color: var(--primary-navy);
  color: var(--text-white);
}

.btn-secondary:hover {
  background-color: var(--primary-navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-navy);
  border: 2px solid var(--border-color);
}

.btn-outline:hover {
  border-color: var(--primary-navy);
  background-color: var(--primary-navy);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--text-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  border-color: var(--text-white);
  background-color: var(--text-white);
  color: var(--primary-navy);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: var(--radius-md);
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
}

.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.pulse-animation {
  animation: subtlePulse 2.5s infinite;
}

@keyframes subtlePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(218, 41, 28, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(218, 41, 28, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(218, 41, 28, 0);
  }
}

/* --- Sticky Modern Header --- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
  height: 72px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Brand Logo / Wordmark */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--primary-navy);
  text-decoration: none;
  line-height: 1.15;
}

.brand-emblem {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-light) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.brand-emblem::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 12px;
  height: 12px;
  background-color: var(--accent-red);
  border-bottom-left-radius: 6px;
}

.brand-emblem svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-navy);
  letter-spacing: -0.01em;
}

.brand-location {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-red);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Navigation Links */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-body);
  position: relative;
  padding: 0.35rem 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-red);
  transition: width var(--transition-normal);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--primary-navy);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--primary-navy);
  font-weight: 700;
}

/* Header Right CTA */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-phone-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background-color: var(--accent-red);
  color: var(--text-white);
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-red);
  transition: all var(--transition-normal);
}

.header-phone-btn:hover {
  background-color: var(--accent-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(218, 41, 28, 0.35);
  color: #FFFFFF;
}

.header-phone-btn svg {
  width: 18px;
  height: 18px;
}

/* Mobile Hamburger Button */
.mobile-toggle {
  display: none;
  background: transparent;
  width: 44px;
  height: 44px;
  padding: 10px 8px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius-sm);
  z-index: 1002;
}

.mobile-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background-color: var(--primary-navy);
  border-radius: 3px;
  transition: all var(--transition-normal);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Slide-out Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 340px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: var(--shadow-xl);
  z-index: 1001;
  padding: 5.5rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(11, 25, 44, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-navy);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-link.active {
  color: var(--accent-red);
}

.mobile-nav-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-address-preview {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  padding: clamp(3.5rem, 6vw, 5.5rem) 0 clamp(4rem, 6vw, 6rem);
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30, 136, 229, 0.07) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: clamp(2.5rem, 4vw, 4.5rem);
  align-items: center;
}

.hero-badge-wrap {
  margin-bottom: 1.25rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-navy);
  box-shadow: var(--shadow-sm);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-red);
  border-radius: 50%;
  display: inline-block;
}

.hero-headline {
  margin-bottom: 1.25rem;
  color: var(--primary-navy);
}

.hero-headline span {
  color: var(--accent-red);
}

.hero-supporting {
  font-size: clamp(1.08rem, 1.3vw, 1.22rem);
  line-height: 1.65;
  color: var(--text-body);
  margin-bottom: 2.25rem;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-color);
}

.fact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
}

.fact-icon {
  width: 20px;
  height: 20px;
  color: var(--accent-red);
  flex-shrink: 0;
}

/* Hero Media Card */
.hero-media-wrapper {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid #FFFFFF;
}

.hero-image-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.hero-image-card:hover img {
  transform: scale(1.03);
}

.hero-floating-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(11, 25, 44, 0.92);
  backdrop-filter: blur(10px);
  color: var(--text-white);
  padding: 1rem 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-lg);
  max-width: 280px;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.floating-icon {
  width: 42px;
  height: 42px;
  background: var(--accent-red);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.floating-icon svg {
  width: 22px;
  height: 22px;
  color: #FFFFFF;
}

.floating-title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}

.floating-desc {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* --- Trust Pillars Section --- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem 1.65rem;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: transparent;
  transition: background-color var(--transition-fast);
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: #CBD5E1;
}

.trust-card:hover::before {
  background-color: var(--accent-red);
}

.trust-icon-box {
  width: 52px;
  height: 52px;
  background-color: var(--bg-surface-alt);
  color: var(--primary-navy);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.35rem;
  transition: all var(--transition-normal);
}

.trust-card:hover .trust-icon-box {
  background-color: var(--accent-red-light);
  color: var(--accent-red);
  transform: scale(1.05);
}

.trust-icon-box svg {
  width: 26px;
  height: 26px;
}

.trust-title {
  font-size: 1.22rem;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
}

.trust-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* --- Services Grid Section --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.service-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: #CBD5E1;
}

.service-image-box {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.service-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.service-card:hover .service-image-box img {
  transform: scale(1.05);
}

.service-tag-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: rgba(11, 25, 44, 0.85);
  backdrop-filter: blur(6px);
  color: #FFFFFF;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-content {
  padding: 1.85rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-header-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.service-icon {
  width: 44px;
  height: 44px;
  background-color: var(--accent-blue-soft);
  color: var(--accent-blue);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon svg {
  width: 22px;
  height: 22px;
}

.service-title {
  font-size: 1.35rem;
  color: var(--text-dark);
}

.service-desc {
  color: var(--text-body);
  font-size: 0.98rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex-grow: 1;
}

.service-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--accent-red);
  font-size: 0.95rem;
  transition: gap var(--transition-fast);
}

.service-cta-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.service-cta-link:hover {
  color: var(--accent-red-hover);
  gap: 0.75rem;
}

.service-cta-link:hover svg {
  transform: translateX(3px);
}

/* --- Why Choose Us Section --- */
.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.why-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.why-image-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.why-image-overlay {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  max-width: 260px;
}

.why-overlay-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.25rem;
}

.why-overlay-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.why-content h2 {
  margin-bottom: 1.25rem;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  margin: 1.85rem 0 2.25rem;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 1.02rem;
  color: var(--text-dark);
  font-weight: 600;
}

.why-check-icon {
  width: 22px;
  height: 22px;
  background-color: var(--accent-red-light);
  color: var(--accent-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-check-icon svg {
  width: 12px;
  height: 12px;
  stroke-width: 3;
}

/* --- Customer Reviews Section --- */
.reviews-section {
  position: relative;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.review-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2rem 1.85rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
  position: relative;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: #CBD5E1;
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.star-rating {
  display: flex;
  gap: 3px;
  color: #F59E0B;
  font-size: 1.15rem;
  line-height: 1;
}

.review-price-tag {
  background-color: #ECFDF5;
  color: #047857;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  border: 1px solid #A7F3D0;
  text-transform: capitalize;
}

.review-body {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-body);
  margin-bottom: 1.5rem;
  font-style: italic;
  flex-grow: 1;
}

.review-author-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-color-subtle);
}

.review-author-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary-navy-light) 0%, var(--primary-navy) 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.author-name {
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--text-dark);
}

.service-tag-pill {
  font-size: 0.76rem;
  color: var(--accent-blue);
  background-color: var(--accent-blue-soft);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  margin-top: 0.15rem;
  display: inline-block;
}

/* --- Toronto Pride Section --- */
.toronto-hero-banner {
  position: relative;
  background-color: var(--primary-navy);
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: clamp(3.5rem, 6vw, 5.5rem) clamp(2rem, 5vw, 4.5rem);
  box-shadow: var(--shadow-xl);
}

.toronto-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: saturate(1.2);
}

.toronto-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(11, 25, 44, 0.95) 0%, rgba(11, 25, 44, 0.7) 100%);
}

.toronto-content-wrap {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.toronto-content-wrap h2 {
  color: #FFFFFF;
  margin-bottom: 1.25rem;
}

.toronto-content-wrap p {
  color: #E2E8F0;
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2.25rem;
}

/* --- Service Areas & Map Section --- */
.location-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: var(--shadow-lg);
  align-items: center;
}

.location-info h2 {
  margin-bottom: 1.25rem;
}

.location-address-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  margin: 1.75rem 0 2rem;
}

.address-icon {
  width: 24px;
  height: 24px;
  color: var(--accent-red);
  flex-shrink: 0;
  margin-top: 2px;
}

.address-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.address-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.4;
}

.map-embed-wrapper {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.map-embed-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Contact Page & Form Styles --- */
.contact-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card-box {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all var(--transition-fast);
}

.contact-card-box:hover {
  border-color: var(--primary-navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  background-color: var(--accent-red-light);
  color: var(--accent-red);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
}

.contact-card-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.contact-card-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.contact-form-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1.15rem;
  background-color: var(--bg-surface);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  background-color: #FFFFFF;
  border-color: var(--accent-red);
  box-shadow: 0 0 0 3px rgba(218, 41, 28, 0.12);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #EF4444;
  background-color: #FEF2F2;
}

.error-msg {
  font-size: 0.8rem;
  color: #EF4444;
  font-weight: 600;
  display: none;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-feedback-alert {
  display: none;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  font-size: 0.92rem;
  line-height: 1.5;
}

.form-feedback-alert.info {
  background-color: #EFF6FF;
  border: 1px solid #BFDBFE;
  color: #1E40AF;
}

.form-feedback-alert.success {
  background-color: #ECFDF5;
  border: 1px solid #A7F3D0;
  color: #065F46;
}

/* --- Call To Action Full-width Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-light) 100%);
  color: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: clamp(3rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 3.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(218, 41, 28, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.cta-banner h2 {
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: #E2E8F0;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* --- Page Header Banner --- */
.page-header {
  background: linear-gradient(180deg, var(--bg-surface) 0%, #FFFFFF 100%);
  padding: clamp(3.5rem, 5vw, 5rem) 0 clamp(2.5rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.page-header h1 {
  margin-bottom: 0.85rem;
}

.page-header p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* --- About Page Values Grid --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.value-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #CBD5E1;
}

.value-icon {
  width: 48px;
  height: 48px;
  background-color: var(--accent-red-light);
  color: var(--accent-red);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.value-icon svg {
  width: 24px;
  height: 24px;
}

.value-title {
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
}

.value-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Footer --- */
.site-footer {
  background-color: var(--primary-navy-dark);
  color: #94A3B8;
  padding-top: clamp(4rem, 6vw, 5.5rem);
  padding-bottom: clamp(2rem, 3vw, 3rem);
  margin-top: auto;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 3.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-brand .brand-logo {
  color: #FFFFFF;
}

.footer-brand .brand-title {
  color: #FFFFFF;
}

.footer-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #94A3B8;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.92rem;
  color: #94A3B8;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: #FFFFFF;
  padding-left: 4px;
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: #CBD5E1;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent-red);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-phone-link {
  color: #FFFFFF;
  font-weight: 700;
}

.footer-phone-link:hover {
  color: var(--accent-red);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #64748B;
  flex-wrap: wrap;
  gap: 1rem;
}

/* --- Mobile Bottom Fixed Call CTA Bar --- */
.mobile-fixed-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--mobile-bar-height);
  background-color: rgba(11, 25, 44, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 999;
  padding: 0.6rem 1.25rem;
  align-items: center;
  justify-content: space-between;
}

.mobile-call-link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background-color: var(--accent-red);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-red);
  text-decoration: none;
}

.mobile-call-link svg {
  width: 20px;
  height: 20px;
}

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.fade-in.active {
  opacity: 1;
}

/* Delay modifiers for staggered entrances */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* --- Responsive Media Queries --- */

/* Tablet / Medium Desktop (<= 1024px) */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-media-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .why-image-card img {
    height: 380px;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .location-card-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet / Mobile (<= 768px) */
@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  body {
    padding-bottom: var(--mobile-bar-height);
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-fixed-call-bar {
    display: flex;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .hero-image-card img {
    height: 340px;
  }

  .hero-floating-badge {
    position: static;
    margin-top: 1rem;
    max-width: 100%;
  }

  .cta-banner {
    padding: 2.5rem 1.25rem;
  }
}

/* Small Mobile (<= 480px) */
@media (max-width: 480px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}
