      :root {
          --navy: #0d2340;
          --navy-mid: #163559;
          --blue: #1a5fa8;
          --gold: #e8a020;
          --gold-light: #f5b93a;
          --white: #ffffff;
          --off-white: #f4f6fa;
          --text: #2a2a2a;
          --text-muted: #6b7280;
          --border: #dce3ef;
          --success: #16a34a;
      }

      *,
      *::before,
      *::after {
          box-sizing: border-box;
          margin: 0;
          padding: 0;
      }

      html {
          scroll-behavior: smooth;
      }

      body {
          font-family: "Lato", sans-serif;
          color: var(--text);
          background: var(--white);
          overflow-x: hidden;
      }

      h1,
      h2,
      h3,
      h4,
      h5,
      h6 {
          font-family: "Oswald", sans-serif;
      }

      /* ════════════════════════
       HEADER
    ════════════════════════ */
      .announcement-bar {
          position: relative;
          z-index: 1100;
          background: rgba(13, 35, 64, 0.82);
          backdrop-filter: blur(18px) saturate(160%);
          -webkit-backdrop-filter: blur(18px) saturate(160%);
          border-bottom: 1px solid rgba(255, 255, 255, 0.1);
          padding: 9px 0;
          overflow: hidden;
      }

      .announcement-bar::after {
          content: "";
          position: absolute;
          bottom: 0;
          left: -60%;
          width: 60%;
          height: 1.5px;
          background: linear-gradient(90deg,
                  transparent,
                  var(--gold-light),
                  transparent);
          animation: shimmer 3.5s ease-in-out infinite;
      }

      @keyframes shimmer {
          0% {
              left: -60%;
          }

          100% {
              left: 140%;
          }
      }

      .ann-pill {
          display: inline-flex;
          align-items: center;
          gap: 6px;
          background: rgba(232, 160, 32, 0.18);
          border: 1px solid rgba(232, 160, 32, 0.35);
          border-radius: 20px;
          padding: 3px 12px;
          font-size: 0.72rem;
          font-weight: 700;
          letter-spacing: 1.2px;
          text-transform: uppercase;
          color: var(--gold-light);
      }

      .ann-text {
          font-size: 0.79rem;
          color: rgba(255, 255, 255, 0.78);
      }

      .ann-text a {
          color: var(--gold-light);
          text-decoration: none;
          font-weight: 700;
      }

      .ann-contact {
          display: flex;
          align-items: center;
          gap: 6px;
          font-size: 0.79rem;
          color: rgba(255, 255, 255, 0.7);
      }

      .ann-contact i {
          color: var(--gold);
          font-size: 0.75rem;
      }

      .ann-contact a {
          color: var(--white);
          font-weight: 700;
          text-decoration: none;
          font-family: "Oswald", sans-serif;
          font-size: 0.92rem;
          letter-spacing: 0.5px;
      }

      .ann-contact a:hover {
          color: var(--gold-light);
      }

      .ann-socials {
          display: flex;
          align-items: center;
          gap: 8px;
      }

      .ann-socials a {
          width: 28px;
          height: 28px;
          border: 1px solid rgba(255, 255, 255, 0.18);
          border-radius: 6px;
          display: flex;
          align-items: center;
          justify-content: center;
          color: rgba(255, 255, 255, 0.55);
          font-size: 0.75rem;
          text-decoration: none;
          transition: all 0.25s;
      }

      .ann-socials a:hover {
          border-color: var(--gold);
          color: var(--gold-light);
          background: rgba(232, 160, 32, 0.1);
      }

      .site-header {
          position: sticky;
          top: 0;
          z-index: 1050;
      }

      .main-nav {
          background: rgba(255, 255, 255, 0.97);
          backdrop-filter: blur(24px);
          -webkit-backdrop-filter: blur(24px);
          border-bottom: 1px solid rgba(13, 35, 64, 0.1);
          box-shadow: 0 4px 24px rgba(13, 35, 64, 0.1);
          padding: 0;
      }

      .nav-logo-wrap {
          display: flex;
          align-items: center;
          gap: 14px;
          text-decoration: none;
      }

      .logo-icon-box {
          position: relative;
          width: 54px;
          height: 54px;
          border-radius: 10px;
          background: var(--navy);
          display: flex;
          align-items: center;
          justify-content: center;
          flex-shrink: 0;
          overflow: hidden;
          transition: transform 0.3s;
      }

      .logo-icon-box::before {
          content: "";
          position: absolute;
          top: -50%;
          left: -50%;
          width: 200%;
          height: 200%;
          background: conic-gradient(from 0deg,
                  transparent 60%,
                  rgba(232, 160, 32, 0.5) 80%,
                  transparent 100%);
          animation: logo-spin 4s linear infinite;
      }

      @keyframes logo-spin {
          to {
              transform: rotate(360deg);
          }
      }

      .logo-icon-box i {
          position: relative;
          z-index: 1;
          color: var(--gold-light);
          font-size: 1.4rem;
      }

      .nav-logo-wrap:hover .logo-icon-box {
          transform: scale(1.06);
      }

      .logo-name {
          font-family: "Oswald", sans-serif;
          font-size: 1.35rem;
          font-weight: 700;
          color: var(--navy);
          letter-spacing: 0.5px;
          display: block;
      }

      .logo-tagline {
          font-size: 0.6rem;
          font-weight: 700;
          text-transform: uppercase;
          letter-spacing: 2px;
          color: var(--blue);
          display: block;
      }

      .nav-items {
          display: flex;
          align-items: center;
          list-style: none;
          margin: 0;
          padding: 0;
          gap: 2px;
      }

      .nav-items .nav-link {
          font-family: "Oswald", sans-serif;
          font-size: 0.85rem;
          font-weight: 500;
          letter-spacing: 0.8px;
          text-transform: uppercase;
          color: var(--navy) !important;
          padding: 28px 15px !important;
          position: relative;
          transition: color 0.25s;
          text-decoration: none;
      }

      .nav-items .nav-link::before {
          content: "";
          position: absolute;
          bottom: 18px;
          left: 15px;
          right: 15px;
          height: 2px;
          background: var(--gold);
          border-radius: 2px;
          transform: scaleX(0);
          transform-origin: right;
          transition: transform 0.3s ease;
      }

      .nav-items .nav-link:hover::before,
      .nav-items .nav-link.active::before {
          transform: scaleX(1);
          transform-origin: left;
      }

      .nav-items .nav-link:hover {
          color: var(--blue) !important;
      }

      .nav-cta-wrap {
          display: flex;
          align-items: center;
          gap: 12px;
          margin-left: 8px;
      }

      .nav-phone-btn {
          display: flex;
          align-items: center;
          gap: 8px;
          color: var(--navy);
          text-decoration: none;
          font-family: "Oswald", sans-serif;
          font-size: 0.88rem;
          letter-spacing: 0.5px;
          transition: color 0.25s;
      }

      .nav-phone-btn .ph-icon {
          width: 34px;
          height: 34px;
          border: 1.5px solid var(--navy-mid);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 0.8rem;
          transition: all 0.25s;
      }

      .nav-phone-btn:hover .ph-icon {
          background: var(--gold);
          border-color: var(--gold);
          color: var(--navy);
      }

      .nav-estimate-btn {
          background: linear-gradient(135deg,
                  var(--gold) 0%,
                  var(--gold-light) 100%);
          color: var(--navy) !important;
          font-family: "Oswald", sans-serif;
          font-weight: 700;
          font-size: 0.82rem;
          letter-spacing: 1px;
          text-transform: uppercase;
          padding: 11px 22px;
          border-radius: 6px;
          text-decoration: none;
          display: inline-flex;
          align-items: center;
          gap: 7px;
          transition: all 0.3s;
          box-shadow: 0 4px 18px rgba(232, 160, 32, 0.4);
          white-space: nowrap;
          position: relative;
          overflow: hidden;
      }

      .nav-estimate-btn::before {
          content: "";
          position: absolute;
          inset: 0;
          background: linear-gradient(135deg,
                  rgba(255, 255, 255, 0.3) 0%,
                  transparent 60%);
          opacity: 0;
          transition: opacity 0.3s;
      }

      .nav-estimate-btn:hover::before {
          opacity: 1;
      }

      .nav-estimate-btn:hover {
          transform: translateY(-2px);
          box-shadow: 0 8px 28px rgba(232, 160, 32, 0.55);
      }

      .nav-toggler {
          background: var(--off-white);
          border: 1.5px solid var(--border);
          border-radius: 8px;
          padding: 8px 12px;
          cursor: pointer;
          display: none;
          flex-direction: column;
          gap: 5px;
      }

      .nav-toggler span {
          display: block;
          width: 22px;
          height: 2px;
          background: var(--navy);
          border-radius: 2px;
          transition: all 0.3s;
      }

      .nav-toggler.open span:nth-child(1) {
          transform: translateY(7px) rotate(45deg);
      }

      .nav-toggler.open span:nth-child(2) {
          opacity: 0;
          transform: scaleX(0);
      }

      .nav-toggler.open span:nth-child(3) {
          transform: translateY(-7px) rotate(-45deg);
      }

      .mobile-menu {
          display: none;
          position: absolute;
          top: 100%;
          left: 16px;
          right: 16px;
          background: rgba(13, 35, 64, 0.97);
          backdrop-filter: blur(20px);
          border: 1px solid rgba(255, 255, 255, 0.1);
          border-radius: 12px;
          padding: 20px 24px;
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
          z-index: 1060;
      }

      .mobile-menu.open {
          display: block;
          animation: slideDown 0.3s ease;
      }

      @keyframes slideDown {
          from {
              opacity: 0;
              transform: translateY(-12px);
          }

          to {
              opacity: 1;
              transform: none;
          }
      }

      .mobile-menu a {
          display: block;
          font-family: "Oswald", sans-serif;
          font-size: 1rem;
          font-weight: 500;
          text-transform: uppercase;
          letter-spacing: 1px;
          color: rgba(255, 255, 255, 0.8);
          text-decoration: none;
          padding: 12px 0;
          border-bottom: 1px solid rgba(255, 255, 255, 0.07);
          transition:
              color 0.2s,
              padding-left 0.2s;
      }

      .mobile-menu a:hover {
          color: var(--gold-light);
          padding-left: 8px;
      }

      .mobile-menu a:last-child {
          border-bottom: none;
      }

      .mobile-cta {
          margin-top: 16px;
      }

      .mobile-cta a.primary {
          background: var(--gold);
          color: var(--navy);
          text-align: center;
          padding: 13px;
          border-radius: 8px;
          font-family: "Oswald", sans-serif;
          font-weight: 700;
          font-size: 0.9rem;
          letter-spacing: 1px;
          text-transform: uppercase;
          text-decoration: none;
          display: block;
      }

      @media (max-width: 991px) {
          .nav-toggler {
              display: flex;
          }

          .nav-items,
          .nav-cta-wrap {
              display: none;
          }

          .main-nav .container {
              position: relative;
          }
      }

      /* ════════════════════════
       PAGE HERO — SPLIT SCREEN
    ════════════════════════ */
      .estimate-hero {
          background: linear-gradient(120deg,
                  var(--navy) 0%,
                  var(--navy-mid) 100%);
          padding: 70px 0 90px;
          position: relative;
          overflow: hidden;
      }

      /* Animated dot grid */
      .estimate-hero::before {
          content: "";
          position: absolute;
          inset: 0;
          background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px,
                  transparent 1px);
          background-size: 28px 28px;
          animation: dots-drift 30s linear infinite;
      }

      @keyframes dots-drift {
          0% {
              background-position: 0 0;
          }

          100% {
              background-position: 280px 280px;
          }
      }

      .hero-glow {
          position: absolute;
          top: -100px;
          right: -100px;
          width: 450px;
          height: 450px;
          background: radial-gradient(circle,
                  rgba(232, 160, 32, 0.14) 0%,
                  transparent 65%);
          border-radius: 50%;
          animation: glow 6s ease-in-out infinite alternate;
      }

      .hero-glow2 {
          position: absolute;
          bottom: -80px;
          left: -80px;
          width: 300px;
          height: 300px;
          background: radial-gradient(circle,
                  rgba(26, 95, 168, 0.2) 0%,
                  transparent 65%);
          border-radius: 50%;
          animation: glow 8s ease-in-out infinite alternate-reverse;
      }

      @keyframes glow {
          0% {
              transform: scale(1);
          }

          100% {
              transform: scale(1.2);
          }
      }

      .hero-content {
          position: relative;
          z-index: 2;
      }

      .hero-eyebrow {
          display: inline-flex;
          align-items: center;
          gap: 8px;
          background: rgba(232, 160, 32, 0.15);
          border: 1px solid rgba(232, 160, 32, 0.4);
          border-radius: 20px;
          padding: 5px 16px;
          margin-bottom: 18px;
          font-size: 0.72rem;
          font-weight: 700;
          letter-spacing: 2px;
          text-transform: uppercase;
          color: var(--gold-light);
      }

      .hero-content h1 {
          font-size: clamp(2.8rem, 5vw, 4.2rem);
          font-weight: 700;
          color: var(--white);
          text-transform: uppercase;
          letter-spacing: 4px;
          line-height: 1.05;
          margin-bottom: 14px;
      }

      .hero-content h1 span {
          color: var(--gold-light);
      }

      .hero-content p {
          color: rgba(255, 255, 255, 0.72);
          font-size: 1rem;
          line-height: 1.8;
          max-width: 440px;
          margin-bottom: 24px;
      }

      .hero-content p a {
          color: var(--gold-light);
          font-weight: 700;
          text-decoration: none;
      }

      .hero-content p a:hover {
          color: #fff;
      }

      .breadcrumb-nav {
          display: flex;
          align-items: center;
          gap: 8px;
          font-size: 0.8rem;
          color: rgba(255, 255, 255, 0.45);
      }

      .breadcrumb-nav a {
          color: rgba(255, 255, 255, 0.65);
          text-decoration: none;
      }

      .breadcrumb-nav a:hover {
          color: var(--gold-light);
      }

      /* Contact info cards in hero */
      .hero-contact-cards {
          display: flex;
          flex-direction: column;
          gap: 14px;
      }

      .hcc {
          background: rgba(255, 255, 255, 0.07);
          border: 1px solid rgba(255, 255, 255, 0.13);
          backdrop-filter: blur(10px);
          border-radius: 14px;
          padding: 20px 22px;
          display: flex;
          align-items: center;
          gap: 16px;
          transition:
              background 0.3s,
              transform 0.3s;
      }

      .hcc:hover {
          background: rgba(255, 255, 255, 0.12);
          transform: translateX(6px);
      }

      .hcc .hcc-icon {
          width: 48px;
          height: 48px;
          border-radius: 12px;
          background: var(--gold);
          display: flex;
          align-items: center;
          justify-content: center;
          color: var(--navy);
          font-size: 1.15rem;
          flex-shrink: 0;
          box-shadow: 0 6px 18px rgba(232, 160, 32, 0.4);
          transition: transform 0.3s;
      }

      .hcc:hover .hcc-icon {
          transform: rotate(-6deg) scale(1.08);
      }

      .hcc h5 {
          font-size: 0.78rem;
          color: rgba(255, 255, 255, 0.55);
          text-transform: uppercase;
          letter-spacing: 1.5px;
          margin-bottom: 3px;
      }

      .hcc p {
          font-family: "Oswald", sans-serif;
          font-size: 1rem;
          color: var(--white);
          margin: 0;
      }

      .hcc a {
          color: var(--gold-light);
          text-decoration: none;
      }

      .hcc a:hover {
          color: #fff;
      }

      /* Wave divider */
      .hero-wave {
          position: absolute;
          bottom: -2px;
          left: 0;
          right: 0;
          height: 70px;
          overflow: hidden;
      }

      .hero-wave svg {
          display: block;
          width: 100%;
          height: 100%;
      }

      /* ════════════════════════
       FORM SECTION — SPLIT LAYOUT
    ════════════════════════ */
      .estimate-section {
          padding: 0 0 80px;
          background: var(--off-white);
      }

      /* Floating form card that overlaps hero */
      .form-wrapper {
          background: var(--white);
          border-radius: 20px;
          box-shadow:
              0 32px 80px rgba(13, 35, 64, 0.14),
              0 0 0 1px rgba(220, 227, 239, 0.6);
          overflow: hidden;
          margin-top: -50px;
          position: relative;
          z-index: 10;
      }

      /* Form header bar */
      .form-header {
          background: linear-gradient(135deg,
                  var(--navy) 0%,
                  var(--navy-mid) 100%);
          padding: 28px 40px;
          display: flex;
          align-items: center;
          justify-content: space-between;
          flex-wrap: wrap;
          gap: 14px;
          position: relative;
          overflow: hidden;
      }

      .form-header::before {
          content: "";
          position: absolute;
          inset: 0;
          background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M20 20h20v20H20z'/%3E%3C/g%3E%3C/svg%3E");
      }

      .form-header-content {
          position: relative;
          z-index: 1;
      }

      .form-header h3 {
          font-size: 1.4rem;
          color: var(--white);
          margin: 0 0 3px;
          text-transform: uppercase;
          letter-spacing: 1px;
      }

      .form-header p {
          color: rgba(255, 255, 255, 0.6);
          font-size: 0.85rem;
          margin: 0;
      }

      .form-header-badge {
          position: relative;
          z-index: 1;
          background: var(--gold);
          color: var(--navy);
          font-family: "Oswald", sans-serif;
          font-weight: 700;
          font-size: 0.75rem;
          letter-spacing: 1.5px;
          text-transform: uppercase;
          padding: 8px 18px;
          border-radius: 20px;
          display: flex;
          align-items: center;
          gap: 7px;
          box-shadow: 0 4px 16px rgba(232, 160, 32, 0.4);
          animation: pulse-badge 2.5s ease-in-out infinite;
      }

      @keyframes pulse-badge {

          0%,
          100% {
              box-shadow: 0 4px 16px rgba(232, 160, 32, 0.4);
          }

          50% {
              box-shadow: 0 4px 28px rgba(232, 160, 32, 0.7);
          }
      }

      /* Progress steps */
      .form-steps {
          display: flex;
          align-items: center;
          gap: 0;
          padding: 22px 40px;
          background: var(--off-white);
          border-bottom: 1px solid var(--border);
      }

      .step {
          display: flex;
          align-items: center;
          gap: 10px;
          flex: 1;
          position: relative;
      }

      .step:not(:last-child)::after {
          content: "";
          position: absolute;
          right: 0;
          top: 50%;
          width: calc(100% - 120px);
          height: 2px;
          background: var(--border);
          transform: translateY(-50%);
          left: 120px;
          transition: background 0.4s;
      }

      .step.done:not(:last-child)::after {
          background: var(--gold);
      }

      .step-circle {
          width: 36px;
          height: 36px;
          border-radius: 50%;
          flex-shrink: 0;
          border: 2px solid var(--border);
          background: var(--white);
          display: flex;
          align-items: center;
          justify-content: center;
          font-family: "Oswald", sans-serif;
          font-size: 0.85rem;
          font-weight: 700;
          color: var(--text-muted);
          transition: all 0.4s;
      }

      .step.active .step-circle {
          background: var(--navy);
          border-color: var(--navy);
          color: var(--white);
          box-shadow: 0 4px 14px rgba(13, 35, 64, 0.3);
      }

      .step.done .step-circle {
          background: var(--gold);
          border-color: var(--gold);
          color: var(--navy);
      }

      .step-label {
          font-family: "Oswald", sans-serif;
          font-size: 0.78rem;
          font-weight: 600;
          text-transform: uppercase;
          letter-spacing: 0.5px;
          color: var(--text-muted);
          transition: color 0.4s;
          white-space: nowrap;
      }

      .step.active .step-label {
          color: var(--navy);
      }

      .step.done .step-label {
          color: var(--gold);
      }

      @media (max-width: 600px) {
          .step-label {
              display: none;
          }

          .step:not(:last-child)::after {
              left: 50px;
              width: calc(100% - 60px);
          }
      }

      /* Form body */
      .form-body {
          padding: 40px 40px 36px;
      }

      @media (max-width: 767px) {

          .form-body,
          .form-header,
          .form-steps {
              padding-left: 22px;
              padding-right: 22px;
          }
      }

      /* Step panels */
      .step-panel {
          display: none;
      }

      .step-panel.active {
          display: block;
          animation: panel-in 0.4s ease;
      }

      @keyframes panel-in {
          from {
              opacity: 0;
              transform: translateY(14px);
          }

          to {
              opacity: 1;
              transform: none;
          }
      }

      /* Form fields */
      .field-group {
          margin-bottom: 22px;
      }

      .field-label {
          display: block;
          font-size: 0.78rem;
          font-weight: 700;
          text-transform: uppercase;
          letter-spacing: 0.8px;
          color: var(--navy);
          margin-bottom: 7px;
      }

      .field-label .req {
          color: var(--gold);
          margin-left: 2px;
      }

      .field-input {
          width: 100%;
          border: 1.5px solid var(--border);
          border-radius: 8px;
          padding: 13px 16px;
          font-size: 0.92rem;
          color: var(--text);
          font-family: "Lato", sans-serif;
          background: var(--white);
          transition:
              border-color 0.25s,
              box-shadow 0.25s;
          outline: none;
      }

      .field-input:focus {
          border-color: var(--blue);
          box-shadow: 0 0 0 3px rgba(26, 95, 168, 0.1);
      }

      .field-input.valid {
          border-color: var(--success);
      }

      .field-input::placeholder {
          color: rgba(107, 114, 128, 0.5);
      }

      textarea.field-input {
          resize: vertical;
          min-height: 120px;
      }

      .field-hint {
          font-size: 0.77rem;
          color: var(--text-muted);
          margin-top: 5px;
      }

      /* Checkbox group */
      .checkbox-group {
          display: flex;
          gap: 20px;
          flex-wrap: wrap;
          margin-top: 4px;
      }

      .custom-check {
          display: flex;
          align-items: center;
          gap: 9px;
          cursor: pointer;
      }

      .custom-check input[type="checkbox"] {
          display: none;
      }

      .check-box {
          width: 22px;
          height: 22px;
          border-radius: 5px;
          border: 2px solid var(--border);
          background: var(--white);
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 0.7rem;
          color: transparent;
          transition: all 0.25s;
          flex-shrink: 0;
      }

      .custom-check input:checked+.check-box {
          background: var(--navy);
          border-color: var(--navy);
          color: var(--white);
      }

      .check-label {
          font-size: 0.9rem;
          color: var(--text-muted);
          font-weight: 600;
          transition: color 0.25s;
      }

      .custom-check input:checked~.check-label {
          color: var(--navy);
      }

      /* Service selector cards */
      .service-selector {
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          gap: 12px;
      }

      @media (max-width: 480px) {
          .service-selector {
              grid-template-columns: 1fr;
          }
      }

      .service-opt {
          display: none;
      }

      .service-card {
          border: 2px solid var(--border);
          border-radius: 10px;
          padding: 16px;
          cursor: pointer;
          display: flex;
          align-items: center;
          gap: 12px;
          transition: all 0.25s;
          background: var(--white);
          position: relative;
          overflow: hidden;
      }

      .service-card::before {
          content: "";
          position: absolute;
          inset: 0;
          background: linear-gradient(135deg,
                  rgba(13, 35, 64, 0.04),
                  transparent);
          opacity: 0;
          transition: opacity 0.3s;
      }

      .service-opt:checked+.service-card {
          border-color: var(--navy);
          background: rgba(13, 35, 64, 0.03);
          box-shadow: 0 4px 16px rgba(13, 35, 64, 0.1);
      }

      .service-opt:checked+.service-card::before {
          opacity: 1;
      }

      .service-card .svc-icon {
          width: 42px;
          height: 42px;
          border-radius: 9px;
          background: var(--off-white);
          display: flex;
          align-items: center;
          justify-content: center;
          color: var(--blue);
          font-size: 1.1rem;
          transition: all 0.25s;
          flex-shrink: 0;
      }

      .service-opt:checked+.service-card .svc-icon {
          background: var(--navy);
          color: var(--gold-light);
      }

      .service-card .svc-name {
          font-family: "Oswald", sans-serif;
          font-size: 0.9rem;
          font-weight: 600;
          color: var(--navy);
          text-transform: uppercase;
          letter-spacing: 0.5px;
      }

      .service-card .check-mark {
          width: 20px;
          height: 20px;
          border: 2px solid var(--border);
          border-radius: 50%;
          margin-left: auto;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 0.6rem;
          color: transparent;
          transition: all 0.25s;
          flex-shrink: 0;
      }

      .service-opt:checked+.service-card .check-mark {
          background: var(--gold);
          border-color: var(--gold);
          color: var(--navy);
      }

      /* Step nav buttons */
      .step-nav {
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding-top: 24px;
          border-top: 1px solid var(--off-white);
          margin-top: 28px;
      }

      .btn-prev {
          background: transparent;
          border: 1.5px solid var(--border);
          color: var(--text-muted);
          font-family: "Oswald", sans-serif;
          font-weight: 600;
          font-size: 0.85rem;
          letter-spacing: 1px;
          text-transform: uppercase;
          padding: 11px 24px;
          border-radius: 7px;
          cursor: pointer;
          display: flex;
          align-items: center;
          gap: 8px;
          transition: all 0.25s;
      }

      .btn-prev:hover {
          border-color: var(--navy);
          color: var(--navy);
      }

      .btn-next {
          background: var(--navy);
          color: var(--white);
          font-family: "Oswald", sans-serif;
          font-weight: 700;
          font-size: 0.88rem;
          letter-spacing: 1px;
          text-transform: uppercase;
          padding: 13px 32px;
          border-radius: 7px;
          border: none;
          cursor: pointer;
          display: flex;
          align-items: center;
          gap: 8px;
          transition: all 0.3s;
          box-shadow: 0 4px 16px rgba(13, 35, 64, 0.25);
      }

      .btn-next:hover {
          background: var(--blue);
          transform: translateY(-2px);
          box-shadow: 0 8px 24px rgba(13, 35, 64, 0.3);
      }

      .btn-submit-final {
          background: linear-gradient(135deg, var(--gold), var(--gold-light));
          color: var(--navy);
          font-family: "Oswald", sans-serif;
          font-weight: 700;
          font-size: 0.92rem;
          letter-spacing: 1px;
          text-transform: uppercase;
          padding: 14px 38px;
          border-radius: 7px;
          border: none;
          cursor: pointer;
          display: flex;
          align-items: center;
          gap: 9px;
          transition: all 0.3s;
          box-shadow: 0 6px 22px rgba(232, 160, 32, 0.4);
      }

      .btn-submit-final:hover {
          background: linear-gradient(135deg, var(--gold-light), var(--gold));
          transform: translateY(-3px);
          box-shadow: 0 10px 32px rgba(232, 160, 32, 0.55);
      }

      /* Step counter */
      .step-counter {
          font-size: 0.8rem;
          color: var(--text-muted);
          font-family: "Oswald", sans-serif;
          letter-spacing: 1px;
      }

      /* ── SUCCESS STATE ── */
      .success-state {
          display: none;
          text-align: center;
          padding: 60px 40px;
          animation: panel-in 0.5s ease;
      }

      .success-state.show {
          display: block;
      }

      .success-circle {
          width: 90px;
          height: 90px;
          border-radius: 50%;
          background: linear-gradient(135deg, var(--success), #15803d);
          display: flex;
          align-items: center;
          justify-content: center;
          margin: 0 auto 24px;
          font-size: 2.2rem;
          color: var(--white);
          box-shadow: 0 12px 36px rgba(22, 163, 74, 0.35);
          animation: pop-in 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      }

      @keyframes pop-in {
          0% {
              transform: scale(0);
          }

          100% {
              transform: scale(1);
          }
      }

      .success-state h3 {
          font-size: 2rem;
          color: var(--navy);
          margin-bottom: 10px;
      }

      .success-state p {
          color: var(--text-muted);
          font-size: 0.95rem;
          max-width: 380px;
          margin: 0 auto 28px;
          line-height: 1.7;
      }

      /* ════════════════════════
       SIDE INFO PANEL
    ════════════════════════ */
      .side-panel {
          position: sticky;
          top: 20px;
      }

      .info-card {
          background: linear-gradient(145deg,
                  var(--navy) 0%,
                  var(--navy-mid) 100%);
          border-radius: 16px;
          padding: 32px 28px;
          color: var(--white);
          margin-bottom: 16px;
          position: relative;
          overflow: hidden;
      }

      .info-card::before {
          content: "";
          position: absolute;
          top: -50px;
          right: -50px;
          width: 200px;
          height: 200px;
          border: 30px solid rgba(232, 160, 32, 0.08);
          border-radius: 50%;
      }

      .info-card h4 {
          font-size: 1.1rem;
          margin-bottom: 18px;
          text-transform: uppercase;
          letter-spacing: 1px;
      }

      .info-card h4 span {
          color: var(--gold-light);
      }

      .info-item {
          display: flex;
          align-items: flex-start;
          gap: 12px;
          margin-bottom: 16px;
      }

      .info-item:last-child {
          margin-bottom: 0;
      }

      .info-item .ii-icon {
          width: 36px;
          height: 36px;
          border-radius: 8px;
          background: rgba(255, 255, 255, 0.08);
          display: flex;
          align-items: center;
          justify-content: center;
          color: var(--gold-light);
          font-size: 0.9rem;
          flex-shrink: 0;
      }

      .info-item .ii-text strong {
          display: block;
          font-size: 0.85rem;
          font-family: "Oswald", sans-serif;
          color: var(--white);
          text-transform: uppercase;
          letter-spacing: 0.5px;
          margin-bottom: 2px;
      }

      .info-item .ii-text span {
          font-size: 0.8rem;
          color: rgba(255, 255, 255, 0.6);
          line-height: 1.5;
          display: block;
      }

      .info-item .ii-text a {
          color: var(--gold-light);
          text-decoration: none;
      }

      .info-item .ii-text a:hover {
          color: #fff;
      }

      .promise-card {
          background: var(--white);
          border-radius: 16px;
          border: 1px solid var(--border);
          padding: 28px;
      }

      .promise-card h4 {
          font-size: 1rem;
          color: var(--navy);
          text-transform: uppercase;
          letter-spacing: 1px;
          margin-bottom: 16px;
          padding-bottom: 12px;
          border-bottom: 2px solid var(--gold);
          display: inline-block;
      }

      .promise-item {
          display: flex;
          align-items: center;
          gap: 10px;
          padding: 8px 0;
          border-bottom: 1px dashed var(--off-white);
      }

      .promise-item:last-child {
          border-bottom: none;
      }

      .promise-item i {
          color: var(--gold);
          font-size: 0.8rem;
          width: 18px;
          flex-shrink: 0;
      }

      .promise-item span {
          font-size: 0.86rem;
          color: var(--text-muted);
      }

      /* ════════════════════════
       TRUST BADGES STRIP
    ════════════════════════ */
      .trust-strip {
          background: var(--navy);
          padding: 36px 0;
      }

      .trust-item {
          text-align: center;
          color: var(--white);
      }

      .trust-item .t-num {
          font-family: "Oswald", sans-serif;
          font-size: 2.2rem;
          font-weight: 700;
          color: var(--gold-light);
          line-height: 1;
      }

      .trust-item .t-lbl {
          font-size: 0.75rem;
          letter-spacing: 2px;
          text-transform: uppercase;
          color: rgba(255, 255, 255, 0.6);
          margin-top: 5px;
      }

      .trust-divider {
          width: 1px;
          background: rgba(255, 255, 255, 0.12);
          align-self: stretch;
          margin: 0 auto;
          height: 50px;
          margin-top: 10px;
      }

      /* ════════════════════════
       WHY SECTION
    ════════════════════════ */
      .why-section {
          padding: 72px 0;
          background: var(--off-white);
      }

      .sec-heading {
          text-align: center;
          margin-bottom: 48px;
      }

      .sec-heading h2 {
          font-size: 2.2rem;
          font-weight: 700;
          color: var(--navy);
          text-transform: uppercase;
          letter-spacing: 1px;
      }

      .divider-line {
          width: 60px;
          height: 3px;
          background: var(--gold);
          margin: 10px auto 14px;
          border-radius: 2px;
      }

      .sec-heading p {
          color: var(--text-muted);
          max-width: 520px;
          margin: 0 auto;
          line-height: 1.7;
          font-size: 0.92rem;
      }

      .why-card {
          background: var(--white);
          border: 1px solid var(--border);
          border-radius: 14px;
          padding: 28px 24px;
          text-align: center;
          height: 100%;
          transition: all 0.35s;
          position: relative;
          overflow: hidden;
      }

      .why-card::after {
          content: "";
          position: absolute;
          bottom: 0;
          left: 0;
          right: 0;
          height: 3px;
          background: linear-gradient(90deg, var(--navy), var(--gold));
          transform: scaleX(0);
          transition: transform 0.4s;
      }

      .why-card:hover {
          transform: translateY(-8px);
          box-shadow: 0 20px 50px rgba(13, 35, 64, 0.1);
          border-color: transparent;
      }

      .why-card:hover::after {
          transform: scaleX(1);
      }

      .why-icon {
          width: 62px;
          height: 62px;
          border-radius: 14px;
          background: linear-gradient(135deg, var(--navy), var(--blue));
          display: flex;
          align-items: center;
          justify-content: center;
          color: var(--gold-light);
          font-size: 1.3rem;
          margin: 0 auto 16px;
          box-shadow: 0 8px 20px rgba(13, 35, 64, 0.2);
          transition: transform 0.35s;
      }

      .why-card:hover .why-icon {
          transform: rotate(-6deg) scale(1.1);
      }

      .why-card h5 {
          font-size: 0.98rem;
          color: var(--navy);
          text-transform: uppercase;
          letter-spacing: 0.5px;
          margin-bottom: 9px;
      }

      .why-card p {
          font-size: 0.85rem;
          color: var(--text-muted);
          line-height: 1.65;
          margin: 0;
      }

      /* ════════════════════════
       FOOTER
    ════════════════════════ */
      footer {
          background: var(--navy);
          color: rgba(255, 255, 255, 0.7);
          padding: 60px 0 0;
      }

      footer h5 {
          font-family: "Oswald", sans-serif;
          font-size: 1rem;
          font-weight: 600;
          color: var(--white);
          text-transform: uppercase;
          letter-spacing: 1.5px;
          margin-bottom: 20px;
          padding-bottom: 10px;
          border-bottom: 2px solid var(--gold);
          display: inline-block;
      }

      footer p {
          font-size: 0.87rem;
          line-height: 1.75;
      }

      footer a {
          color: rgba(255, 255, 255, 0.6);
          text-decoration: none;
          font-size: 0.87rem;
          transition: color 0.2s;
      }

      footer a:hover {
          color: var(--gold-light);
      }

      footer ul {
          list-style: none;
          padding: 0;
      }

      footer ul li {
          padding: 5px 0;
      }

      footer ul li a::before {
          content: "→ ";
          color: var(--gold);
          font-size: 0.75rem;
      }

      .footer-social a {
          width: 38px;
          height: 38px;
          background: rgba(255, 255, 255, 0.08);
          border-radius: 6px;
          display: inline-flex;
          align-items: center;
          justify-content: center;
          margin-right: 8px;
          color: rgba(255, 255, 255, 0.6) !important;
          font-size: 0.95rem;
          transition: all 0.25s;
      }

      .footer-social a:hover {
          background: var(--gold);
          color: var(--navy) !important;
          transform: translateY(-3px);
      }

      .footer-bottom {
          border-top: 1px solid rgba(255, 255, 255, 0.1);
          margin-top: 48px;
          padding: 20px 0;
          font-size: 0.8rem;
          color: rgba(255, 255, 255, 0.4);
      }

      .footer-logo-text {
          font-family: "Oswald", sans-serif;
          font-size: 1.5rem;
          font-weight: 700;
          color: var(--white);
      }

      .footer-logo-text span {
          color: var(--gold-light);
      }

      /* ════════════════════════
       SCROLL ANIMATIONS
    ════════════════════════ */
      .reveal {
          opacity: 0;
          transform: translateY(28px);
          transition:
              opacity 0.7s ease,
              transform 0.7s ease;
      }

      .reveal.from-left {
          transform: translateX(-28px);
      }

      .reveal.from-right {
          transform: translateX(28px);
      }

      .reveal.visible {
          opacity: 1;
          transform: none;
      }

      .d1 {
          transition-delay: 0.1s;
      }

      .d2 {
          transition-delay: 0.2s;
      }

      .d3 {
          transition-delay: 0.3s;
      }

      .d4 {
          transition-delay: 0.4s;
      }

      #back-top {
          position: fixed;
          bottom: 28px;
          right: 28px;
          width: 46px;
          height: 46px;
          background: var(--gold);
          color: var(--navy);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 1.1rem;
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
          opacity: 0;
          pointer-events: none;
          transition: all 0.3s;
          z-index: 999;
          text-decoration: none;
      }