/*
	Theme Name: Hello Elementor
	Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
	Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
	Author: Elementor Team
	Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
	Version: 3.5.1
	Stable tag: 3.5.1
	Requires at least: 6.0
	Tested up to: 7.0
	Requires PHP: 7.4
	License: GNU General Public License v3 or later.
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
	Text Domain: hello-elementor
	Tags: accessibility-ready, flexible-header, custom-colors, custom-menu, custom-logo, featured-images, rtl-language-support, threaded-comments, translation-ready,
*/
    :root {
      --navy: #241f21;
      --navy-2: #1e293b;
      --blue: #2563eb;
      --blue-dark: #1d4ed8;
      --orange: #f97316;
      --orange-dark: #ea580c;
      --white: #ffffff;
      --off-white: #f8fafc;
      --gray: #64748b;
      --light-gray: #e2e8f0;
      --text: #0f172a;
      --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.08);
      --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.12);
      --shadow-lg: 0 20px 60px rgba(15, 23, 42, 0.16);
      --radius: 18px;
      --radius-sm: 12px;
      --container: 1160px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.6;
    }

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

    a {
      color: inherit;
      text-decoration: none;
    }

    ul {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .container {
      width: min(var(--container), calc(100% - 32px));
      margin-inline: auto;
    }

    .section {
      padding: 88px 0;
    }

    .section-alt {
      background: var(--off-white);
    }

    .eyebrow {
      display: inline-block;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 12px;
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.1;
      margin: 0 0 16px;
      letter-spacing: -0.03em;
    }

    .section-text {
      max-width: 720px;
      color: var(--gray);
      font-size: 1.05rem;
      margin: 0 auto;
    }

    .center {
      text-align: center;
    }

    /* Header */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.88);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      min-height: 78px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      font-size: 1.1rem;
      letter-spacing: -0.02em;
      color: var(--navy);
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--blue), var(--navy));
      color: white;
      font-size: 1.2rem;
      box-shadow: var(--shadow-sm);
    }

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

    .nav a {
      color: var(--navy-2);
      font-weight: 600;
      font-size: 0.95rem;
      transition: color 0.2s ease;
    }

    .nav a:hover {
      color: var(--blue);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 48px;
      padding: 0 22px;
      border-radius: 999px;
      font-weight: 700;
      font-size: 0.95rem;
      border: 1px solid transparent;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
      white-space: nowrap;
    }

    .btn:hover {
      transform: translateY(-1px);
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--orange), var(--orange-dark));
      color: white;
      box-shadow: 0 10px 24px rgba(249, 115, 22, 0.28);
    }

    .btn-secondary {
      background: white;
      color: var(--navy);
      border-color: var(--light-gray);
      box-shadow: var(--shadow-sm);
    }

    .btn-dark {
      background: var(--navy);
      color: white;
      box-shadow: var(--shadow-md);
    }

    .menu-toggle {
      display: none;
      width: 48px;
      height: 48px;
      border-radius: 12px;
      border: 1px solid var(--light-gray);
      background: white;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-sm);
    }

    .menu-toggle span,
    .menu-toggle span::before,
    .menu-toggle span::after {
      content: "";
      display: block;
      width: 22px;
      height: 2px;
      background: var(--navy);
      border-radius: 999px;
      position: relative;
      transition: 0.25s ease;
    }

    .menu-toggle span::before {
      position: absolute;
      top: -7px;
    }

    .menu-toggle span::after {
      position: absolute;
      top: 7px;
    }

    .menu-toggle.active span {
      background: transparent;
    }

    .menu-toggle.active span::before {
      transform: rotate(45deg);
      top: 0;
    }

    .menu-toggle.active span::after {
      transform: rotate(-45deg);
      top: 0;
    }

    /* Hero */
    .hero {
      position: relative;
      overflow: hidden;
      padding: 96px 0 110px;
      background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.18), transparent 30%),
        radial-gradient(circle at bottom left, rgba(249, 115, 22, 0.16), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #f8fafc 45%, #eef2ff 100%);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 48px;
      align-items: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(37, 99, 235, 0.08);
      color: var(--blue-dark);
      font-weight: 700;
      font-size: 0.9rem;
      margin-bottom: 20px;
      border: 1px solid rgba(37, 99, 235, 0.12);
    }

    .hero h1 {
      font-size: clamp(2.6rem, 6vw, 4.5rem);
      line-height: 0.98;
      letter-spacing: -0.05em;
      margin: 0 0 20px;
      color: var(--navy);
    }

    .hero p.lead {
      font-size: 1.15rem;
      color: var(--gray);
      max-width: 640px;
      margin: 0 0 30px;
    }

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

    .hero-points {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      max-width: 680px;
    }

    .hero-point {
      background: rgba(255, 255, 255, 0.8);
      border: 1px solid rgba(15, 23, 42, 0.08);
      border-radius: 16px;
      padding: 16px;
      box-shadow: var(--shadow-sm);
    }

    .hero-point strong {
      display: block;
      color: var(--navy);
      margin-bottom: 4px;
    }

    .hero-point span {
      color: var(--gray);
      font-size: 0.92rem;
    }

    .hero-card {
      position: relative;
      background: linear-gradient(160deg, var(--navy), var(--navy-2));
      color: white;
      border-radius: 28px;
      padding: 28px;
      box-shadow: var(--shadow-lg);
      overflow: hidden;
      min-height: 460px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .hero-card::before {
      content: "";
      position: absolute;
      inset: auto -40px -60px auto;
      width: 220px;
      height: 220px;
      background: radial-gradient(circle, rgba(249, 115, 22, 0.35), transparent 65%);
      filter: blur(10px);
    }

    .hero-card::after {
      content: "";
      position: absolute;
      inset: -80px auto auto -40px;
      width: 220px;
      height: 220px;
      background: radial-gradient(circle, rgba(37, 99, 235, 0.35), transparent 65%);
      filter: blur(10px);
    }

    .hero-card-top,
    .hero-card-bottom {
      position: relative;
      z-index: 1;
    }

    .hero-card-label {
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: rgba(255,255,255,0.72);
      margin-bottom: 10px;
    }

    .hero-card h3 {
      font-size: 1.8rem;
      line-height: 1.15;
      margin: 0 0 14px;
      letter-spacing: -0.03em;
    }

    .hero-card p {
      color: rgba(255,255,255,0.78);
      margin: 0;
    }

    .mini-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      margin-top: 24px;
    }

    .mini-stat {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 18px;
      padding: 18px;
    }

    .mini-stat .value {
      font-size: 1.3rem;
      font-weight: 800;
      margin-bottom: 4px;
    }

    .mini-stat .label {
      color: rgba(255,255,255,0.72);
      font-size: 0.9rem;
    }

    .glow-line {
      height: 4px;
      width: 90px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--orange), var(--blue));
      margin-bottom: 18px;
    }

    /* Trust strip */
    .trust-strip {
      padding: 22px 0;
      background: white;
      border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    }

    .trust-items {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
      align-items: center;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--navy-2);
      font-weight: 700;
      font-size: 0.95rem;
    }

    .trust-icon {
      width: 38px;
      height: 38px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: #eff6ff;
      color: var(--blue);
      font-size: 1rem;
    }

    /* Services */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 22px;
      margin-top: 42px;
    }

    .service-card {
      background: white;
      border: 1px solid rgba(15, 23, 42, 0.08);
      border-radius: var(--radius);
      padding: 28px 24px;
      box-shadow: var(--shadow-sm);
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
      border-color: rgba(37, 99, 235, 0.18);
    }

    .service-icon {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(249, 115, 22, 0.12));
      color: var(--navy);
      font-size: 1.4rem;
      margin-bottom: 18px;
    }

    .service-card h3 {
      margin: 0 0 10px;
      font-size: 1.15rem;
      letter-spacing: -0.02em;
    }

    .service-card p {
      margin: 0;
      color: var(--gray);
      font-size: 0.98rem;
    }

    /* Why choose us */
    .why-grid {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 40px;
      align-items: center;
      margin-top: 42px;
    }

    .why-image {
      border-radius: 28px;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      min-height: 420px;
      background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.75), rgba(37, 99, 235, 0.35)),
        url('https://images.unsplash.com/photo-1621905251189-08b45d6a269e?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
      position: relative;
    }

    .why-image::after {
      content: "Greater Sudbury Area";
      position: absolute;
      left: 24px;
      bottom: 24px;
      padding: 12px 16px;
      border-radius: 999px;
      background: rgba(255,255,255,0.92);
      color: var(--navy);
      font-weight: 800;
      box-shadow: var(--shadow-sm);
    }

    .feature-list {
      display: grid;
      gap: 18px;
    }

    .feature-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 20px;
      background: white;
      border: 1px solid rgba(15, 23, 42, 0.08);
      border-radius: 20px;
      box-shadow: var(--shadow-sm);
    }

    .feature-check {
      width: 42px;
      height: 42px;
      flex: 0 0 42px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: #ecfdf5;
      color: #059669;
      font-weight: 900;
    }

    .feature-item h4 {
      margin: 0 0 6px;
      font-size: 1.05rem;
    }

    .feature-item p {
      margin: 0;
      color: var(--gray);
      font-size: 0.96rem;
    }

    /* Process */
    .process-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
      margin-top: 42px;
    }

    .process-card {
      position: relative;
      background: white;
      border-radius: 24px;
      padding: 30px 24px 24px;
      border: 1px solid rgba(15, 23, 42, 0.08);
      box-shadow: var(--shadow-sm);
    }

    .step-number {
      position: absolute;
      top: -18px;
      left: 24px;
      width: 44px;
      height: 44px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--navy), var(--blue));
      color: white;
      font-weight: 800;
      box-shadow: var(--shadow-sm);
    }

    #home {
	    margin: -16px 0;
	}

    .process-card h3 {
      margin: 12px 0 10px;
      font-size: 1.15rem;
    }

    .process-card p {
      margin: 0;
      color: var(--gray);
    }

    /* CTA banner */
    .cta-banner {
      background: linear-gradient(135deg, var(--navy) 0%, #16305c 55%, var(--blue-dark) 100%);
      color: white;
      border-radius: 30px;
      padding: 44px;
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 30px;
      align-items: center;
      box-shadow: var(--shadow-lg);
      overflow: hidden;
      position: relative;
    }

    .cta-banner::before {
      content: "";
      position: absolute;
      inset: auto -80px -80px auto;
      width: 260px;
      height: 260px;
      background: radial-gradient(circle, rgba(249, 115, 22, 0.28), transparent 68%);
    }

    .cta-banner h2 {
      margin: 0 0 12px;
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      line-height: 1.1;
      letter-spacing: -0.03em;
    }

    .cta-banner p {
      margin: 0;
      color: rgba(255,255,255,0.8);
      font-size: 1.02rem;
    }

    .cta-actions {
      display: flex;
      justify-content: flex-end;
      gap: 14px;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }

    /* Contact */
    .contact-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 30px;
      margin-top: 42px;
    }

    .contact-info,
    .contact-form-card {
      background: white;
      border: 1px solid rgba(15, 23, 42, 0.08);
      border-radius: 26px;
      padding: 30px;
      box-shadow: var(--shadow-sm);
    }

    .contact-info h3,
    .contact-form-card h3 {
      margin: 0 0 10px;
      font-size: 1.35rem;
      letter-spacing: -0.02em;
    }

    .contact-info > p {
      margin: 0 0 24px;
      color: var(--gray);
    }

    .info-list {
      display: grid;
      gap: 16px;
    }

    .info-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }

    .info-icon {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: #eff6ff;
      color: var(--blue);
      font-size: 1.1rem;
      flex: 0 0 44px;
    }

    .info-item strong {
      display: block;
      margin-bottom: 4px;
    }

    .info-item span,
    .info-item a {
      color: var(--gray);
    }

    .hours-table {
      width: 100%;
      margin-top: 20px;
      border-collapse: collapse;
      font-size: 0.95rem;
    }

    .hours-table td {
      padding: 8px 0;
      border-bottom: 1px solid var(--light-gray);
    }

    .hours-table tr:last-child td {
      border-bottom: none;
    }

    .hours-table td:first-child {
      font-weight: 700;
      color: var(--navy);
      width: 30%;
    }

    .hours-table td:last-child {
      text-align: right;
      color: var(--gray);
    }

    .closed-tag {
      color: var(--orange-dark);
      font-weight: 700;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .form-group {
      /*display: grid;*/
      gap: 8px;
    }

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

    label {
      font-weight: 700;
      font-size: 0.92rem;
      color: var(--navy-2);
    }

    input,
    textarea,
    select {
      width: 100%;
      min-height: 50px;
      border: 1px solid var(--light-gray);
      border-radius: 14px;
      padding: 12px 14px;
      font: inherit;
      background: #fff;
      color: var(--text);
      outline: none;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    textarea {
      min-height: 140px;
      resize: vertical;
    }

    input:focus,
    textarea:focus,
    select:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
    }

    .form-note {
      margin: 16px 0 0;
      color: var(--gray);
      font-size: 0.92rem;
    }

    /* Footer */
    .site-footer {
      background: var(--navy);
      color: rgba(255,255,255,0.82);
      padding: 64px 0 28px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
      gap: 30px;
    }

    .footer-brand {
      color: white;
      font-weight: 800;
      font-size: 1.15rem;
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
    }

    .footer p {
      margin: 0;
      color: rgba(255,255,255,0.7);
    }

    .footer h4 {
      color: white;
      margin: 0 0 14px;
      font-size: 1rem;
    }

    .footer-links {
      display: grid;
      gap: 10px;
    }

    .footer-links a {
      color: rgba(255,255,255,0.72);
      transition: color 0.2s ease;
    }

    .footer-links a:hover {
      color: white;
    }

    .footer-bottom {
      margin-top: 42px;
      padding-top: 22px;
      border-top: 1px solid rgba(255,255,255,0.1);
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      color: rgba(255,255,255,0.6);
      font-size: 0.92rem;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .hero-grid,
      .why-grid,
      .contact-grid,
      .cta-banner {
        grid-template-columns: 1fr;
      }

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

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

      .cta-actions {
        justify-content: flex-start;
      }

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

    @media (max-width: 768px) {
      .nav {
        position: absolute;
        top: 105px;
        left: 16px;
        right: 16px;
        background: white;
        border: 1px solid rgba(15, 23, 42, 0.08);
        border-radius: 20px;
        padding: 18px;
        box-shadow: var(--shadow-lg);
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
      }

      .nav.open {
        display: flex;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .header-actions .btn:not(.menu-toggle) {
        display: none;
      }

      .hero {
        padding: 72px 0 84px;
      }

      .hero-points {
        grid-template-columns: 1fr;
      }

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

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

      .section {
        padding: 72px 0;
      }

      .cta-banner {
        padding: 30px 22px;
        border-radius: 24px;
      }

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