

    :root {
      /* Primary: Deep Forest Green */
      --primary: 160 45% 22%;
      --primary-foreground: 0 0% 98%;
      
      /* Background */
      --background: 40 20% 98%;
      --foreground: 220 20% 15%;
      
      /* Card */
      --card: 40 30% 99%;
      --card-foreground: 220 20% 15%;
      
      /* Secondary */
      --secondary: 220 10% 92%;
      --secondary-foreground: 220 20% 20%;
      
      /* Muted */
      --muted: 40 15% 95%;
      --muted-foreground: 220 10% 45%;
      
      /* Accent: Warm Amber */
      --accent: 38 92% 50%;
      --accent-foreground: 220 20% 10%;
      
      /* Border */
      --border: 220 15% 88%;
      
      /* Radius */
      --radius: 0.625rem;
      
      /* Brand Colors */
      --revive-green: 160 45% 22%;
      --revive-green-light: 160 35% 35%;
      --revive-amber: 38 92% 50%;
      --revive-amber-dark: 30 85% 42%;
      --revive-stone: 40 10% 55%;
      --revive-stone-light: 40 15% 92%;
      --revive-charcoal: 220 20% 15%;
      
      /* Gradients */
      --gradient-hero: linear-gradient(135deg, hsl(160 45% 18%) 0%, hsl(160 50% 28%) 50%, hsl(165 40% 22%) 100%);
      --gradient-accent: linear-gradient(135deg, hsl(38 92% 50%) 0%, hsl(30 85% 45%) 100%);
      
      /* Shadows */
      --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
      --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
      --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
      --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
      --shadow-glow: 0 0 40px -10px hsl(160 45% 35% / 0.4);
      --shadow-cta: 0 8px 30px -8px hsl(38 92% 40% / 0.5);
    }
    
    /* Reset */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }
    
    body {
      font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background-color: hsl(var(--background));
      color: hsl(var(--foreground));
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Playfair Display', Georgia, serif;
      font-weight: 600;
      letter-spacing: -0.02em;
      line-height: 1.2;
    }
    
    a {
      color: inherit;
      text-decoration: none;
    }
    
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    
    button {
      font-family: inherit;
      cursor: pointer;
      border: none;
      outline: none;
    }
    
    input, textarea, select {
      font-family: inherit;
      font-size: inherit;
    }
    
    /* Container */
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }
    
    /* Utility Classes */
    .text-center { text-align: center; }
    .text-left { text-align: left; }
    .text-right { text-align: right; }
    
    .flex { display: flex; }
    .flex-col { flex-direction: column; }
    .items-center { align-items: center; }
    .items-start { align-items: flex-start; }
    .justify-center { justify-content: center; }
    .justify-between { justify-content: space-between; }
    .gap-2 { gap: 0.5rem; }
    .gap-3 { gap: 0.75rem; }
    .gap-4 { gap: 1rem; }
    .gap-6 { gap: 1.5rem; }
    .gap-8 { gap: 2rem; }
    
    .grid { display: grid; }
    .hidden { display: none; }
    
    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.75rem 1.5rem;
      font-weight: 600;
      border-radius: var(--radius);
      transition: all 0.3s ease;
    }
    
    .btn-cta {
      padding: 1rem 2rem;
      font-size: 1rem;
      font-weight: 600;
      border-radius: var(--radius);
      background: var(--gradient-accent);
      color: hsl(var(--revive-charcoal));
      box-shadow: var(--shadow-cta);
      transition: all 0.3s ease;
    }
    
    .btn-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 35px -8px hsl(38 92% 40% / 0.6);
    }
    
    .btn-secondary {
      padding: 1rem 2rem;
      font-size: 1rem;
      font-weight: 600;
      border-radius: var(--radius);
      background: rgba(255,255,255,0.1);
      color: white;
      border: 1px solid rgba(255,255,255,0.3);
      backdrop-filter: blur(4px);
      transition: all 0.3s ease;
    }
    
    .btn-secondary:hover {
      background: rgba(255,255,255,0.2);
      border-color: rgba(255,255,255,0.5);
    }
    
    /* ==============================================
       HEADER
    ============================================== */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: transparent;
      transition: all 0.3s ease;
    }
    
    .header.scrolled {
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(10px);
      box-shadow: var(--shadow-md);
    }
    
    .header-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 0;
    }
    
    .logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    
    .logo-icon {
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 0.5rem;
      background: hsl(var(--primary));
      display: flex;
      align-items: center;
      justify-content: center;
      color: hsl(var(--primary-foreground));
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 1.25rem;
    }
    
    .logo-text {
      font-family: 'Playfair Display', serif;
      font-weight: 600;
      font-size: 1.25rem;
      color: white;
      line-height: 1.2;
    }
    
    .header.scrolled .logo-text {
      color: hsl(var(--foreground));
    }
    
    .logo-subtext {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.7);
    }
    
    .header.scrolled .logo-subtext {
      color: hsl(var(--muted-foreground));
    }
    
    .nav-desktop {
      display: none;
      gap: 2rem;
    }
    
    @media (min-width: 1024px) {
      .nav-desktop {
        display: flex;
      }
    }
    
    .nav-link {
      font-size: 0.875rem;
      font-weight: 500;
      color: rgba(255,255,255,0.9);
      transition: color 0.2s;
      position: relative;
    }
    
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 100%;
      height: 2px;
      background: hsl(var(--accent));
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.3s ease;
    }
    
    .nav-link:hover::after {
      transform: scaleX(1);
      transform-origin: left;
    }
    
    .header.scrolled .nav-link {
      color: hsl(var(--foreground));
    }
    
    .nav-link:hover {
      color: hsl(var(--accent));
    }
    
    .header-actions {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    
    .header-phone {
      display: none;
      align-items: center;
      gap: 0.5rem;
      font-weight: 600;
      color: white;
    }
    
    @media (min-width: 768px) {
      .header-phone {
        display: flex;
      }
    }
    
    .header.scrolled .header-phone {
      color: hsl(var(--foreground));
    }
    
    .header-cta {
      display: none;
      padding: 0.625rem 1.25rem;
      font-size: 0.875rem;
      font-weight: 600;
      background: hsl(var(--accent));
      color: hsl(var(--accent-foreground));
      border-radius: var(--radius);
      transition: all 0.3s ease;
    }
    
    @media (min-width: 1024px) {
      .header-cta {
        display: inline-flex;
      }
    }
    
    .header-cta:hover {
      background: hsl(var(--revive-amber-dark));
    }
    
    .mobile-menu-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 2.5rem;
      height: 2.5rem;
      background: rgba(255,255,255,0.1);
      border-radius: var(--radius);
      color: white;
    }
    
    .header.scrolled .mobile-menu-btn {
      background: hsl(var(--muted));
      color: hsl(var(--foreground));
    }
    
    @media (min-width: 1024px) {
      .mobile-menu-btn {
        display: none;
      }
    }
    
    /* Mobile Menu */
    .mobile-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      max-width: 320px;
      height: 100vh;
      background: white;
      box-shadow: var(--shadow-xl);
      z-index: 200;
      transition: right 0.3s ease;
      padding: 1.5rem;
    }
    
    .mobile-menu.active {
      right: 0;
    }
    
    .mobile-menu-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.5);
      z-index: 150;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
      opacity: 1;
      visibility: visible;
    }
    
    .mobile-menu-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 2rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid hsl(var(--border));
    }
    
    .mobile-nav-links {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    
    .mobile-nav-link {
      padding: 0.75rem 1rem;
      font-weight: 500;
      color: hsl(var(--foreground));
      border-radius: var(--radius);
      transition: all 0.2s;
    }
    
    .mobile-nav-link:hover {
      background: hsl(var(--muted));
      color: hsl(var(--primary));
    }
    
    .mobile-menu-cta {
      margin-top: 1.5rem;
      padding: 1rem;
      width: 100%;
      text-align: center;
      background: hsl(var(--accent));
      color: hsl(var(--accent-foreground));
      font-weight: 600;
      border-radius: var(--radius);
    }
    
    /* ==============================================
       HERO SECTION
    ============================================== */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      background: var(--gradient-hero);
      overflow: hidden;
      padding: 6rem 0 4rem;
    }
    
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    
    .hero-bg-image {
      position: absolute;
      inset: 0;
      background: url('https://revivepropertyservices.ca/images/background-revive-property-services-gta.png?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
      opacity: 0.15;
    }
    
    .hero-content {
      position: relative;
      z-index: 10;
    }
    
    .hero-grid {
      display: grid;
      gap: 3rem;
      align-items: center;
    }
    
    @media (min-width: 1024px) {
      .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
      }
    }
    
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 1rem;
      background: rgba(255,255,255,0.15);
      border-radius: 9999px;
      font-size: 0.875rem;
      font-weight: 500;
      color: rgba(255,255,255,0.9);
      margin-bottom: 1.5rem;
      backdrop-filter: blur(4px);
    }
    
    .hero-badge-dot {
      width: 0.5rem;
      height: 0.5rem;
      background: hsl(var(--accent));
      border-radius: 50%;
      animation: pulse 2s ease-in-out infinite;
    }
    
    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.5; }
    }
    
    .hero-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: white;
      margin-bottom: 1.5rem;
      line-height: 1.1;
    }
    
    @media (min-width: 768px) {
      .hero-title {
        font-size: 3.5rem;
      }
    }
    
    @media (min-width: 1024px) {
      .hero-title {
        font-size: 4rem;
      }
    }
    
    .hero-title-accent {
      display: block;
      background: var(--gradient-accent);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    .hero-description {
      font-size: 1.125rem;
      color: rgba(255,255,255,0.85);
      margin-bottom: 2rem;
      max-width: 540px;
      line-height: 1.7;
    }
    
    .hero-features {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 2rem;
    }
    
    .hero-feature {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.9375rem;
      color: rgba(255,255,255,0.9);
    }
    
    .hero-feature-icon {
      width: 1.25rem;
      height: 1.25rem;
      color: hsl(var(--accent));
    }
    
    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    
    .hero-image-wrapper {
      display: none;
      position: relative;
    }
    
    @media (min-width: 1024px) {
      .hero-image-wrapper {
        display: block;
      }
    }
    
    .hero-image {
      border-radius: 1rem;
      box-shadow: var(--shadow-xl);
      width: 100%;
      height: 500px;
      object-fit: cover;
    }
    
    .hero-trust-badges {
      position: absolute;
      bottom: -2rem;
      left: -2rem;
      background: white;
      padding: 1.5rem;
      border-radius: 1rem;
      box-shadow: var(--shadow-xl);
    }
    
    .hero-trust-title {
      font-size: 0.75rem;
      font-weight: 600;
      color: hsl(var(--muted-foreground));
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 0.75rem;
    }
    
    .hero-trust-items {
      display: flex;
      gap: 1rem;
    }
    
    .hero-trust-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 0.75rem;
      background: hsl(var(--muted));
      border-radius: var(--radius);
      font-size: 0.75rem;
      font-weight: 500;
      color: hsl(var(--foreground));
    }
    
    .hero-trust-item svg {
      width: 1rem;
      height: 1rem;
      color: hsl(var(--primary));
    }
    
    /* ==============================================
       WHO WE SERVE SECTION
    ============================================== */
    .who-we-serve {
      padding: 5rem 0;
      background: hsl(var(--background));
    }
    
    @media (min-width: 768px) {
      .who-we-serve {
        padding: 7rem 0;
      }
    }
    
    .section-header {
      text-align: center;
      margin-bottom: 4rem;
    }
    
    .section-badge {
      display: inline-block;
      padding: 0.375rem 1rem;
      background: hsl(var(--primary) / 0.1);
      color: hsl(var(--primary));
      border-radius: 9999px;
      font-size: 0.875rem;
      font-weight: 500;
      margin-bottom: 1rem;
    }
    
    .section-title {
      font-size: 2rem;
      font-weight: 700;
      color: hsl(var(--foreground));
      margin-bottom: 1rem;
    }
    
    @media (min-width: 768px) {
      .section-title {
        font-size: 2.5rem;
      }
    }
    
    @media (min-width: 1024px) {
      .section-title {
        font-size: 3rem;
      }
    }
    
    .section-description {
      font-size: 1.125rem;
      color: hsl(var(--muted-foreground));
      max-width: 600px;
      margin: 0 auto;
    }
    
    .serve-grid {
      display: grid;
      gap: 2rem;
    }
    
    @media (min-width: 768px) {
      .serve-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }
    
    .serve-card {
      position: relative;
      background: hsl(var(--card));
      border: 1px solid hsl(var(--border));
      border-radius: 1rem;
      padding: 2rem;
      transition: all 0.3s ease;
      overflow: hidden;
    }
    
    .serve-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--gradient-accent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
    }
    
    .serve-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-xl);
    }
    
    .serve-card:hover::before {
      transform: scaleX(1);
    }
    
    .serve-icon {
      width: 4rem;
      height: 4rem;
      background: hsl(var(--primary) / 0.1);
      border-radius: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
    }
    
    .serve-icon svg {
      width: 2rem;
      height: 2rem;
      color: hsl(var(--primary));
    }
    
    .serve-title {
      font-size: 1.25rem;
      font-weight: 600;
      color: hsl(var(--foreground));
      margin-bottom: 0.75rem;
    }
    
    .serve-description {
      font-size: 0.9375rem;
      color: hsl(var(--muted-foreground));
      margin-bottom: 1.5rem;
    }
    
    .serve-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    
    .serve-list-item {
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
      font-size: 0.875rem;
      color: hsl(var(--foreground));
    }
    
    .serve-list-item svg {
      width: 1rem;
      height: 1rem;
      color: hsl(var(--accent));
      flex-shrink: 0;
      margin-top: 0.25rem;
    }
    
    /* ==============================================
       SERVICES SECTION
    ============================================== */
    .services {
      padding: 5rem 0;
      background: hsl(var(--muted));
    }
    
    @media (min-width: 768px) {
      .services {
        padding: 7rem 0;
      }
    }
    
    .services-grid {
      display: flex;
      flex-direction: column;
      gap: 4rem;
    }
    
    .service-row {
      display: grid;
      gap: 3rem;
      align-items: center;
    }
    
    @media (min-width: 1024px) {
      .service-row {
        grid-template-columns: 1fr 1fr;
      }
      
      .service-row.reverse .service-content {
        order: 2;
      }
      
      .service-row.reverse .service-image-wrapper {
        order: 1;
      }
    }
    
    .service-image-wrapper {
      position: relative;
      border-radius: 1rem;
      overflow: hidden;
    }
    
    .service-image {
      width: 100%;
      height: 300px;
      object-fit: cover;
      border-radius: 1rem;
    }
    
    @media (min-width: 768px) {
      .service-image {
        height: 400px;
      }
    }
    
    .service-image-overlay {
      position: absolute;
      bottom: 1rem;
      left: 1rem;
      background: white;
      padding: 0.75rem 1rem;
      border-radius: var(--radius);
      box-shadow: var(--shadow-lg);
    }
    
    .service-overlay-title {
      font-size: 0.75rem;
      font-weight: 600;
      color: hsl(var(--muted-foreground));
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 0.25rem;
    }
    
    .service-overlay-text {
      font-size: 1rem;
      font-weight: 700;
      color: hsl(var(--primary));
    }
    
    .service-content h3 {
      font-size: 1.75rem;
      font-weight: 700;
      color: hsl(var(--foreground));
      margin-bottom: 1rem;
    }
    
    @media (min-width: 768px) {
      .service-content h3 {
        font-size: 2rem;
      }
    }
    
    .service-content > p {
      font-size: 1rem;
      color: hsl(var(--muted-foreground));
      margin-bottom: 1.5rem;
      line-height: 1.7;
    }
    
    .service-list {
      display: grid;
      gap: 0.75rem;
      margin-bottom: 1.5rem;
    }
    
    @media (min-width: 640px) {
      .service-list {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    .service-list-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.75rem;
      background: hsl(var(--card));
      border-radius: var(--radius);
    }
    
    .service-list-item svg {
      width: 1.25rem;
      height: 1.25rem;
      color: hsl(var(--primary));
      flex-shrink: 0;
    }
    
    .service-list-item span {
      font-size: 0.875rem;
      font-weight: 500;
      color: hsl(var(--foreground));
    }
    
    .service-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-weight: 600;
      color: hsl(var(--primary));
      transition: gap 0.3s ease;
    }
    
    .service-cta:hover {
      gap: 0.75rem;
    }
    
    .service-cta svg {
      width: 1.25rem;
      height: 1.25rem;
    }
    
    /* ==============================================
       WHY CHOOSE US SECTION
    ============================================== */
    .why-us {
      padding: 5rem 0;
      background: hsl(var(--background));
    }
    
    @media (min-width: 768px) {
      .why-us {
        padding: 7rem 0;
      }
    }
    
    .why-grid {
      display: grid;
      gap: 3rem;
      align-items: center;
    }
    
    @media (min-width: 1024px) {
      .why-grid {
        grid-template-columns: 1fr 1fr;
      }
    }
    
    .why-content .section-badge {
      margin-bottom: 1rem;
    }
    
    .why-content h2 {
      font-size: 2rem;
      font-weight: 700;
      color: hsl(var(--foreground));
      margin-bottom: 1rem;
    }
    
    @media (min-width: 768px) {
      .why-content h2 {
        font-size: 2.5rem;
      }
    }
    
    .why-content > p {
      font-size: 1.125rem;
      color: hsl(var(--muted-foreground));
      margin-bottom: 2rem;
      line-height: 1.7;
    }
    
    .why-features {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    
    .why-feature {
      display: flex;
      gap: 1rem;
    }
    
    .why-feature-icon {
      width: 3rem;
      height: 3rem;
      background: hsl(var(--primary) / 0.1);
      border-radius: 0.75rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    
    .why-feature-icon svg {
      width: 1.5rem;
      height: 1.5rem;
      color: hsl(var(--primary));
    }
    
    .why-feature h4 {
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      color: hsl(var(--foreground));
      margin-bottom: 0.25rem;
    }
    
    .why-feature p {
      font-size: 0.875rem;
      color: hsl(var(--muted-foreground));
    }
    
    .why-image-wrapper {
      position: relative;
    }
    
    .why-image {
      width: 100%;
      height: 400px;
      object-fit: cover;
      border-radius: 1rem;
      box-shadow: var(--shadow-xl);
    }
    
    @media (min-width: 768px) {
      .why-image {
        height: 500px;
      }
    }
    
    .why-stats {
      position: absolute;
      bottom: -1.5rem;
      right: -1.5rem;
      background: white;
      padding: 1.5rem;
      border-radius: 1rem;
      box-shadow: var(--shadow-xl);
      display: none;
    }
    
    @media (min-width: 768px) {
      .why-stats {
        display: block;
      }
    }
    
    .why-stat {
      text-align: center;
    }
    
    .why-stat:first-child {
      margin-bottom: 1rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid hsl(var(--border));
    }
    
    .why-stat-value {
      font-size: 2rem;
      font-weight: 700;
      color: hsl(var(--primary));
      line-height: 1;
    }
    
    .why-stat-label {
      font-size: 0.75rem;
      color: hsl(var(--muted-foreground));
      margin-top: 0.25rem;
    }
    
    /* ==============================================
       TESTIMONIALS SECTION
    ============================================== */
    .testimonials {
      padding: 5rem 0;
      background: var(--gradient-hero);
      position: relative;
      overflow: hidden;
    }
    
    @media (min-width: 768px) {
      .testimonials {
        padding: 7rem 0;
      }
    }
    
    .testimonials::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      opacity: 0.5;
    }
    
    .testimonials .container {
      position: relative;
      z-index: 10;
    }
    
    .testimonials .section-badge {
      background: rgba(255,255,255,0.2);
      color: rgba(255,255,255,0.9);
    }
    
    .testimonials .section-title {
      color: white;
    }
    
    .testimonials .section-description {
      color: rgba(255,255,255,0.8);
    }
    
    .testimonials-grid {
      display: grid;
      gap: 2rem;
    }
    
    @media (min-width: 768px) {
      .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (min-width: 1024px) {
      .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }
    
    .testimonial-card {
      background: white;
      border-radius: 1rem;
      padding: 1.5rem 2rem;
      position: relative;
      box-shadow: var(--shadow-xl);
    }
    
    .testimonial-quote {
      position: absolute;
      top: -0.75rem;
      left: 1.5rem;
      width: 2.5rem;
      height: 2.5rem;
      background: hsl(var(--accent));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-lg);
    }
    
    .testimonial-quote svg {
      width: 1.25rem;
      height: 1.25rem;
      color: hsl(var(--accent-foreground));
    }
    
    .testimonial-stars {
      display: flex;
      gap: 0.25rem;
      margin-bottom: 1rem;
      padding-top: 0.5rem;
    }
    
    .testimonial-stars svg {
      width: 1.25rem;
      height: 1.25rem;
      fill: hsl(var(--accent));
      color: hsl(var(--accent));
    }
    
    .testimonial-text {
      font-size: 0.9375rem;
      color: hsl(var(--foreground) / 0.8);
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }
    
    .testimonial-author {
      border-top: 1px solid hsl(var(--border));
      padding-top: 1rem;
    }
    
    .testimonial-name {
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      color: hsl(var(--foreground));
    }
    
    .testimonial-role {
      font-size: 0.875rem;
      color: hsl(var(--muted-foreground));
    }
    
    /* ==============================================
       SERVICE AREA SECTION
    ============================================== */
    .service-area {
      padding: 5rem 0;
      background: hsl(var(--background));
    }
    
    @media (min-width: 768px) {
      .service-area {
        padding: 7rem 0;
      }
    }
    
    .area-content {
      display: grid;
      gap: 3rem;
      align-items: center;
    }
    
    @media (min-width: 1024px) {
      .area-content {
        grid-template-columns: 1fr 1fr;
      }
    }
    
    .area-cities {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
    
    @media (min-width: 640px) {
      .area-cities {
        grid-template-columns: repeat(3, 1fr);
      }
    }
    
    .area-city {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 1rem;
      background: hsl(var(--card));
      border: 1px solid hsl(var(--border));
      border-radius: var(--radius);
      transition: all 0.3s ease;
    }
    
    .area-city:hover {
      border-color: hsl(var(--primary));
      background: hsl(var(--primary) / 0.05);
    }
    
    .area-city svg {
      width: 1.25rem;
      height: 1.25rem;
      color: hsl(var(--primary));
    }
    
    .area-city span {
      font-weight: 500;
      color: hsl(var(--foreground));
    }
    
    .area-note {
      grid-column: 1 / -1;
      text-align: center;
      padding: 1.5rem;
      background: hsl(var(--primary) / 0.1);
      border-radius: var(--radius);
      margin-top: 1rem;
    }
    
    .area-note p {
      color: hsl(var(--primary));
      font-weight: 500;
    }
    
    .area-map {
      position: relative;
      border-radius: 1rem;
      overflow: hidden;
      height: 300px;
    }
    
    @media (min-width: 768px) {
      .area-map {
        height: 400px;
      }
    }
    
    .area-map img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .area-map-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, hsl(var(--primary) / 0.8), transparent);
      display: flex;
      align-items: flex-end;
      padding: 2rem;
    }
    
    .area-map-text {
      color: white;
    }
    
    .area-map-text h4 {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
    }
    
    .area-map-text p {
      font-size: 0.9375rem;
      opacity: 0.9;
    }
    
    /* ==============================================
       CONTACT SECTION
    ============================================== */
    .contact {
      padding: 5rem 0;
      background: hsl(var(--muted));
    }
    
    @media (min-width: 768px) {
      .contact {
        padding: 7rem 0;
      }
    }
    
    .contact-grid {
      display: grid;
      gap: 3rem;
    }
    
    @media (min-width: 1024px) {
      .contact-grid {
        grid-template-columns: 1fr 1.2fr;
      }
    }
    
    .contact-info h2 {
      font-size: 2rem;
      font-weight: 700;
      color: hsl(var(--foreground));
      margin-bottom: 1rem;
    }
    
    @media (min-width: 768px) {
      .contact-info h2 {
        font-size: 2.5rem;
      }
    }
    
    .contact-info > p {
      font-size: 1rem;
      color: hsl(var(--muted-foreground));
      margin-bottom: 2rem;
      line-height: 1.7;
    }
    
    .contact-methods {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      margin-bottom: 2rem;
    }
    
    .contact-method {
      display: flex;
      gap: 1rem;
    }
    
    .contact-method-icon {
      width: 3rem;
      height: 3rem;
      background: hsl(var(--primary));
      border-radius: 0.75rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    
    .contact-method-icon svg {
      width: 1.5rem;
      height: 1.5rem;
      color: hsl(var(--primary-foreground));
    }
    
    .contact-method h4 {
      font-family: 'Inter', sans-serif;
      font-size: 0.875rem;
      font-weight: 500;
      color: hsl(var(--muted-foreground));
      margin-bottom: 0.25rem;
    }
    
    .contact-method a,
    .contact-method p {
      font-size: 1rem;
      font-weight: 600;
      color: hsl(var(--foreground));
    }
    
    .contact-method a:hover {
      color: hsl(var(--primary));
    }
    
    .contact-hours {
      padding: 1.5rem;
      background: hsl(var(--card));
      border: 1px solid hsl(var(--border));
      border-radius: var(--radius);
    }
    
    .contact-hours h4 {
      font-family: 'Inter', sans-serif;
      font-size: 0.875rem;
      font-weight: 600;
      color: hsl(var(--foreground));
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    .contact-hours h4 svg {
      width: 1.25rem;
      height: 1.25rem;
      color: hsl(var(--primary));
    }
    
    .contact-hours p {
      font-size: 0.875rem;
      color: hsl(var(--muted-foreground));
      margin-bottom: 0.25rem;
    }
    
    /* Contact Form */
    .contact-form-wrapper {
      background: hsl(var(--card));
      border: 1px solid hsl(var(--border));
      border-radius: 1rem;
      padding: 2rem;
      box-shadow: var(--shadow-lg);
    }
    
    .contact-form-title {
      font-size: 1.5rem;
      font-weight: 600;
      color: hsl(var(--foreground));
      margin-bottom: 1.5rem;
    }
    
    .form-grid {
      display: grid;
      gap: 1.25rem;
    }
    
    @media (min-width: 640px) {
      .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
      }
    }
    
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    
    .form-label {
      font-size: 0.875rem;
      font-weight: 500;
      color: hsl(var(--foreground));
    }
    
    .form-input,
    .form-select,
    .form-textarea {
      width: 100%;
      padding: 0.75rem 1rem;
      background: hsl(var(--background));
      border: 1px solid hsl(var(--border));
      border-radius: var(--radius);
      font-size: 1rem;
      color: hsl(var(--foreground));
      transition: all 0.2s;
    }
    
    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
      outline: none;
      border-color: hsl(var(--primary));
      box-shadow: 0 0 0 3px hsl(var(--primary) / 0.1);
    }
    
    .form-input::placeholder,
    .form-textarea::placeholder {
      color: hsl(var(--muted-foreground));
    }
    
    .form-textarea {
      min-height: 120px;
      resize: vertical;
    }
    
    .form-submit {
      width: 100%;
      padding: 1rem;
      background: hsl(var(--primary));
      color: hsl(var(--primary-foreground));
      font-size: 1rem;
      font-weight: 600;
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      transition: all 0.3s ease;
    }
    
    .form-submit:hover {
      background: hsl(var(--revive-green-light));
    }
    
    .form-submit svg {
      width: 1.25rem;
      height: 1.25rem;
    }
    
    .form-note {
      font-size: 0.75rem;
      color: hsl(var(--muted-foreground));
      text-align: center;
      margin-top: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }
    
    .form-note svg {
      width: 1rem;
      height: 1rem;
      color: hsl(var(--primary));
    }
    
    /* ==============================================
       FOOTER
    ============================================== */
    .footer {
      background: hsl(var(--revive-charcoal));
      color: white;
    }
    
    .footer-main {
      padding: 4rem 0;
    }
    
    .footer-grid {
      display: grid;
      gap: 2.5rem;
    }
    
    @media (min-width: 768px) {
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (min-width: 1024px) {
      .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
      }
    }
    
    .footer-brand .logo {
      margin-bottom: 1.5rem;
    }
    
    .footer-brand .logo-text {
      color: white;
    }
    
    .footer-brand .logo-subtext {
      color: rgba(255,255,255,0.6);
    }
    
    .footer-brand > p {
      font-size: 0.875rem;
      color: rgba(255,255,255,0.7);
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }
    
    .footer-contact {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    
    .footer-contact a,
    .footer-contact p {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.875rem;
      color: rgba(255,255,255,0.8);
      transition: color 0.2s;
    }
    
    .footer-contact a:hover {
      color: hsl(var(--accent));
    }
    
    .footer-contact svg {
      width: 1.25rem;
      height: 1.25rem;
    }
    
    .footer-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.125rem;
      font-weight: 600;
      margin-bottom: 1.25rem;
    }
    
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    
    .footer-link {
      font-size: 0.875rem;
      color: rgba(255,255,255,0.7);
      transition: color 0.2s;
    }
    
    .footer-link:hover {
      color: hsl(var(--accent));
    }
    
    .footer-areas-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.5rem;
    }
    
    .footer-quick-links .footer-link {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    .footer-quick-links .footer-link svg {
      width: 0.75rem;
      height: 0.75rem;
    }
    
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding: 1.5rem 0;
    }
    
    .footer-bottom-content {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
    
    @media (min-width: 768px) {
      .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
      }
    }
    
    .footer-bottom p {
      font-size: 0.875rem;
      color: rgba(255,255,255,0.6);
    }
    
    /* ==============================================
       LOCATION RESTRICTION OVERLAY
    ============================================== */
    .location-overlay {
      position: fixed;
      inset: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--gradient-hero);
    }
    
    .location-overlay-bg {
      position: absolute;
      inset: 0;
      background: url('https://revivepropertyservices.ca/images/background-revive-property-services-gta.png?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
      opacity: 0.2;
    }
    
    .location-card {
      position: relative;
      z-index: 10;
      max-width: 480px;
      width: calc(100% - 2rem);
      background: white;
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: var(--shadow-xl);
    }
    
    .location-header {
      background: hsl(var(--primary));
      padding: 1.5rem;
      text-align: center;
    }
    
    .location-icon {
      width: 4rem;
      height: 4rem;
      background: rgba(255,255,255,0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
    }
    
    .location-icon svg {
      width: 2rem;
      height: 2rem;
      color: white;
    }
    
    .location-header h1 {
      font-size: 1.5rem;
      color: white;
      margin-bottom: 0.5rem;
    }
    
    @media (min-width: 768px) {
      .location-header h1 {
        font-size: 1.75rem;
      }
    }
    
    .location-header p {
      font-size: 0.875rem;
      color: rgba(255,255,255,0.8);
    }
    
    .location-body {
      padding: 1.5rem;
    }
    
    @media (min-width: 768px) {
      .location-body {
        padding: 2rem;
      }
    }
    
    .location-alert {
      display: flex;
      gap: 0.75rem;
      padding: 1rem;
      background: hsl(45 93% 95%);
      border: 1px solid hsl(45 90% 85%);
      border-radius: var(--radius);
      margin-bottom: 1.5rem;
    }
    
    .location-alert svg {
      width: 1.25rem;
      height: 1.25rem;
      color: hsl(45 90% 40%);
      flex-shrink: 0;
      margin-top: 0.125rem;
    }
    
    .location-alert h3 {
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      color: hsl(var(--foreground));
      margin-bottom: 0.25rem;
    }
    
    .location-alert p {
      font-size: 0.875rem;
      color: hsl(var(--muted-foreground));
      line-height: 1.6;
    }
    
    .location-detected {
      font-size: 0.875rem;
      color: hsl(var(--muted-foreground));
      text-align: center;
      margin-bottom: 1.5rem;
    }
    
    .location-detected strong {
      color: hsl(var(--foreground));
    }
    
    .location-subscribe {
      background: hsl(var(--muted));
      border: 1px solid hsl(var(--border));
      border-radius: var(--radius);
      padding: 1.5rem;
    }
    
    .location-subscribe-header {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.75rem;
    }
    
    .location-subscribe-header svg {
      width: 1.25rem;
      height: 1.25rem;
      color: hsl(var(--primary));
    }
    
    .location-subscribe-header h4 {
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      color: hsl(var(--foreground));
    }
    
    .location-subscribe > p {
      font-size: 0.875rem;
      color: hsl(var(--muted-foreground));
      margin-bottom: 1rem;
    }
    
    .location-subscribe-form {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    
    @media (min-width: 640px) {
      .location-subscribe-form {
        flex-direction: row;
      }
    }
    
    .location-subscribe-input {
      flex: 1;
      position: relative;
    }
    
    .location-subscribe-input svg {
      position: absolute;
      left: 0.75rem;
      top: 50%;
      transform: translateY(-50%);
      width: 1.25rem;
      height: 1.25rem;
      color: hsl(var(--muted-foreground));
    }
    
    .location-subscribe-input input {
      width: 100%;
      padding: 0.75rem 1rem 0.75rem 2.5rem;
      background: white;
      border: 1px solid hsl(var(--border));
      border-radius: var(--radius);
      font-size: 1rem;
    }
    
    .location-subscribe-input input:focus {
      outline: none;
      border-color: hsl(var(--primary));
    }
    
    .location-subscribe-btn {
      padding: 0.75rem 1.5rem;
      background: hsl(var(--accent));
      color: hsl(var(--accent-foreground));
      font-weight: 600;
      border-radius: var(--radius);
      transition: background 0.2s;
    }
    
    .location-subscribe-btn:hover {
      background: hsl(var(--revive-amber-dark));
    }
    
    .location-success {
      background: hsl(140 70% 95%);
      border: 1px solid hsl(140 60% 80%);
      border-radius: var(--radius);
      padding: 1.5rem;
      text-align: center;
    }
    
    .location-success svg {
      width: 3rem;
      height: 3rem;
      color: hsl(140 60% 40%);
      margin: 0 auto 0.75rem;
    }
    
    .location-success h4 {
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      color: hsl(var(--foreground));
      margin-bottom: 0.5rem;
    }
    
    .location-success p {
      font-size: 0.875rem;
      color: hsl(var(--muted-foreground));
    }
    
    .location-footer {
      border-top: 1px solid hsl(var(--border));
      padding: 1rem 1.5rem;
      background: hsl(var(--muted) / 0.3);
    }
    
    .location-footer p {
      font-size: 0.75rem;
      color: hsl(var(--muted-foreground));
      text-align: center;
      line-height: 1.6;
    }
    
    /* ==============================================
       LOADING STATE
    ============================================== */
    .loading-screen {
      position: fixed;
      inset: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      background: hsl(var(--background));
    }
    
    .loading-content {
      text-align: center;
    }
    
    .loading-spinner {
      width: 3rem;
      height: 3rem;
      border: 3px solid hsl(var(--border));
      border-top-color: hsl(var(--primary));
      border-radius: 50%;
      animation: spin 1s linear infinite;
      margin: 0 auto 1rem;
    }
    
    @keyframes spin {
      to { transform: rotate(360deg); }
    }
    
    .loading-text {
      color: hsl(var(--muted-foreground));
    }
    
    /* ==============================================
       ANIMATIONS
    ============================================== */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .animate-fade-in-up {
      animation: fadeInUp 0.6s ease-out forwards;
    }
    
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
    
    .animate-float {
      animation: float 6s ease-in-out infinite;
    }
    
    /* Stagger delays */
    .delay-100 { animation-delay: 100ms; }
    .delay-200 { animation-delay: 200ms; }
    .delay-300 { animation-delay: 300ms; }
    .delay-400 { animation-delay: 400ms; }
    .delay-500 { animation-delay: 500ms; }
    
    /* Screen reader only */
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }
    
    
    