      /* ── CSS VARIABLES ── */
      :root {
          --navy: #0d2340;
          --navy-mid: #163559;
          --blue: #1a5fa8;
          --blue-light: #2277cc;
          --gold: #e8a020;
          --gold-light: #f5b93a;
          --white: #ffffff;
          --off-white: #f4f6fa;
          --text: #2a2a2a;
          --text-muted: #6b7280;
          --border: #dce3ef;
      }

      * {
          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 {
          font-family: "Oswald", sans-serif;
      }

      /* ══════════════════════════════════
       FANCY HEADER (same as home page)
    ══════════════════════════════════ */
      .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: -100%;
          width: 60%;
          height: 1.5px;
          background: linear-gradient(90deg,
                  transparent,
                  var(--gold-light),
                  transparent);
          animation: shimmer-line 3.5s ease-in-out infinite;
      }

      @keyframes shimmer-line {
          0% {
              left: -60%;
          }

          100% {
              left: 140%;
          }
      }

      .ann-left {
          display: flex;
          align-items: center;
          gap: 20px;
          flex-wrap: wrap;
      }

      .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-text a:hover {
          color: #fff;
      }

      .ann-right {
          display: flex;
          align-items: center;
          gap: 18px;
      }

      .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(13, 35, 64, 0);
          backdrop-filter: blur(0px);
          -webkit-backdrop-filter: blur(0px);
          border-bottom: 1px solid rgba(255, 255, 255, 0);
          padding: 0;
          transition:
              background 0.4s,
              backdrop-filter 0.4s,
              border-color 0.4s,
              box-shadow 0.4s;
      }

      .main-nav.scrolled {
          background: rgba(255, 255, 255, 0.93);
          backdrop-filter: blur(24px) saturate(180%);
          -webkit-backdrop-filter: blur(24px) saturate(180%);
          border-bottom: 1px solid rgba(13, 35, 64, 0.1);
          box-shadow: 0 4px 32px rgba(13, 35, 64, 0.12);
      }

      /* On products page, nav is always solid since no full-bleed hero underneath */
      .main-nav.solid {
          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);
      }

      .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-text-block {
          line-height: 1.15;
      }

      .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;
      }

      .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;
          padding: 8px 0;
      }

      .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;
          transition: background 0.25s;
      }

      .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);
          -webkit-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;
          transition: background 0.25s;
      }

      @media (max-width: 991px) {
          .nav-toggler {
              display: flex;
          }

          .nav-items,
          .nav-cta-wrap {
              display: none;
          }

          .main-nav .container {
              position: relative;
          }
      }

      /* ══════════════════════════════════
       PAGE HERO BANNER
    ══════════════════════════════════ */
      .page-hero {
          background: linear-gradient(120deg,
                  var(--navy) 0%,
                  var(--navy-mid) 50%,
                  var(--blue) 100%);
          position: relative;
          padding: 72px 0 80px;
          overflow: hidden;
      }

      /* Animated grid pattern background */
      .page-hero::before {
          content: "";
          position: absolute;
          inset: 0;
          background-image:
              linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
              linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
          background-size: 40px 40px;
          animation: grid-drift 20s linear infinite;
      }

      @keyframes grid-drift {
          0% {
              transform: translate(0, 0);
          }

          100% {
              transform: translate(40px, 40px);
          }
      }

      /* Glowing orbs */
      .page-hero::after {
          content: "";
          position: absolute;
          top: -80px;
          right: -80px;
          width: 400px;
          height: 400px;
          background: radial-gradient(circle,
                  rgba(232, 160, 32, 0.18) 0%,
                  transparent 65%);
          border-radius: 50%;
          animation: orb-pulse 5s ease-in-out infinite alternate;
      }

      @keyframes orb-pulse {
          0% {
              transform: scale(1);
              opacity: 0.6;
          }

          100% {
              transform: scale(1.2);
              opacity: 1;
          }
      }

      .hero-orb2 {
          position: absolute;
          bottom: -100px;
          left: -50px;
          width: 300px;
          height: 300px;
          background: radial-gradient(circle,
                  rgba(26, 95, 168, 0.3) 0%,
                  transparent 65%);
          border-radius: 50%;
          animation: orb-pulse 7s ease-in-out infinite alternate-reverse;
      }

      .page-hero-content {
          position: relative;
          z-index: 2;
          text-align: center;
      }

      .page-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.75rem;
          font-weight: 700;
          letter-spacing: 2px;
          text-transform: uppercase;
          color: var(--gold-light);
      }

      .page-hero h1 {
          font-size: clamp(2.8rem, 5vw, 4rem);
          font-weight: 700;
          color: var(--white);
          letter-spacing: 4px;
          text-transform: uppercase;
          margin-bottom: 16px;
          text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
      }

      .page-hero h1 span {
          color: var(--gold-light);
      }

      .page-hero p {
          color: rgba(255, 255, 255, 0.8);
          font-size: 1.05rem;
          max-width: 700px;
          margin: 0 auto 28px;
          line-height: 1.75;
      }

      .page-hero p a {
          color: var(--gold-light);
          font-weight: 700;
          text-decoration: none;
      }

      .page-hero p a:hover {
          color: #fff;
      }

      .hero-cta-row {
          display: flex;
          justify-content: center;
          gap: 14px;
          flex-wrap: wrap;
      }

      .btn-gold-hero {
          background: var(--gold);
          color: var(--navy);
          font-family: "Oswald", sans-serif;
          font-weight: 700;
          font-size: 0.9rem;
          letter-spacing: 1px;
          text-transform: uppercase;
          padding: 13px 30px;
          border-radius: 6px;
          text-decoration: none;
          display: inline-flex;
          align-items: center;
          gap: 8px;
          transition: all 0.3s;
          box-shadow: 0 6px 24px rgba(232, 160, 32, 0.4);
      }

      .btn-gold-hero:hover {
          background: var(--gold-light);
          transform: translateY(-3px);
          box-shadow: 0 10px 32px rgba(232, 160, 32, 0.55);
          color: var(--navy);
      }

      .breadcrumb-row {
          position: relative;
          z-index: 2;
          display: flex;
          justify-content: center;
          align-items: center;
          gap: 8px;
          margin-top: 28px;
          font-size: 0.8rem;
          color: rgba(255, 255, 255, 0.55);
      }

      .breadcrumb-row a {
          color: rgba(255, 255, 255, 0.7);
          text-decoration: none;
      }

      .breadcrumb-row a:hover {
          color: var(--gold-light);
      }

      .breadcrumb-row i {
          font-size: 0.6rem;
      }

      /* Wavy bottom edge */
      .page-hero-wave {
          position: absolute;
          bottom: -2px;
          left: 0;
          right: 0;
          height: 60px;
          overflow: hidden;
      }

      .page-hero-wave svg {
          display: block;
          width: 100%;
          height: 100%;
      }

      /* ══════════════════════════════════
       FILTER / CATEGORY TABS
    ══════════════════════════════════ */
      .filter-section {
          background: var(--white);
          padding: 40px 0 0;
      }

      .filter-tabs {
          display: flex;
          align-items: center;
          gap: 10px;
          flex-wrap: wrap;
          justify-content: center;
          padding-bottom: 36px;
          border-bottom: 2px solid var(--off-white);
      }

      .filter-tab {
          font-family: "Oswald", sans-serif;
          font-size: 0.82rem;
          font-weight: 500;
          text-transform: uppercase;
          letter-spacing: 1px;
          padding: 9px 20px;
          border-radius: 30px;
          border: 1.5px solid var(--border);
          background: transparent;
          color: var(--text-muted);
          cursor: pointer;
          transition: all 0.25s;
      }

      .filter-tab:hover {
          border-color: var(--blue);
          color: var(--blue);
          background: rgba(26, 95, 168, 0.05);
      }

      .filter-tab.active {
          background: var(--navy);
          color: var(--white);
          border-color: var(--navy);
          box-shadow: 0 4px 16px rgba(13, 35, 64, 0.25);
      }

      /* ══════════════════════════════════
       PRODUCT CARDS
    ══════════════════════════════════ */
      .products-section {
          padding: 60px 0 80px;
          background: var(--white);
      }

      /* ── Individual product card ── */
      .product-card {
          background: var(--white);
          border: 1px solid var(--border);
          border-radius: 16px;
          overflow: hidden;
          display: flex;
          flex-direction: column;
          transition:
              transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              box-shadow 0.4s;
          position: relative;
      }

      .product-card::before {
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          height: 4px;
          background: linear-gradient(90deg,
                  var(--navy),
                  var(--blue),
                  var(--gold));
          transform: scaleX(0);
          transform-origin: left;
          transition: transform 0.4s ease;
      }

      .product-card:hover {
          transform: translateY(-10px);
          box-shadow: 0 28px 70px rgba(13, 35, 64, 0.14);
      }

      .product-card:hover::before {
          transform: scaleX(1);
      }

      /* Image pane */
      .product-img-wrap {
          position: relative;
          overflow: hidden;
          height: 240px;
          flex-shrink: 0;
      }

      .product-img-wrap img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: transform 0.6s ease;
      }

      .product-card:hover .product-img-wrap img {
          transform: scale(1.08);
      }

      .product-img-overlay {
          position: absolute;
          inset: 0;
          background: linear-gradient(to top,
                  rgba(13, 35, 64, 0.75) 0%,
                  transparent 55%);
          opacity: 0;
          transition: opacity 0.4s;
          display: flex;
          align-items: flex-end;
          padding: 18px;
      }

      .product-card:hover .product-img-overlay {
          opacity: 1;
      }

      .product-img-overlay a {
          color: var(--white);
          font-family: "Oswald", sans-serif;
          font-size: 0.8rem;
          letter-spacing: 1.5px;
          text-transform: uppercase;
          text-decoration: none;
          display: flex;
          align-items: center;
          gap: 6px;
          border: 1px solid rgba(255, 255, 255, 0.5);
          border-radius: 20px;
          padding: 5px 14px;
          transition: all 0.25s;
      }

      .product-img-overlay a:hover {
          background: var(--gold);
          border-color: var(--gold);
          color: var(--navy);
      }

      /* Badge on image */
      .product-badge {
          position: absolute;
          top: 14px;
          left: 14px;
          background: var(--gold);
          color: var(--navy);
          font-family: "Oswald", sans-serif;
          font-size: 0.7rem;
          font-weight: 700;
          letter-spacing: 1px;
          text-transform: uppercase;
          padding: 4px 12px;
          border-radius: 20px;
          box-shadow: 0 3px 10px rgba(232, 160, 32, 0.5);
      }

      .product-badge.premium {
          background: var(--navy);
          color: var(--gold-light);
      }

      .product-badge.popular {
          background: #16a34a;
          color: #fff;
      }

      /* Card body */
      .product-body {
          padding: 26px 28px 22px;
          flex: 1;
          display: flex;
          flex-direction: column;
      }

      .product-brand {
          font-size: 0.72rem;
          font-weight: 700;
          letter-spacing: 2px;
          text-transform: uppercase;
          color: var(--blue);
          margin-bottom: 6px;
      }

      .product-body h3 {
          font-size: 1.35rem;
          font-weight: 700;
          color: var(--navy);
          line-height: 1.25;
          margin-bottom: 8px;
      }

      .product-subtitle {
          font-size: 0.8rem;
          color: var(--gold);
          font-weight: 700;
          font-style: italic;
          margin-bottom: 14px;
      }

      .product-desc {
          font-size: 0.875rem;
          color: var(--text-muted);
          line-height: 1.7;
          margin-bottom: 18px;
          flex: 1;
      }

      /* Spec list */
      .spec-list {
          list-style: none;
          padding: 0;
          margin: 0 0 20px;
      }

      .spec-list li {
          display: flex;
          align-items: flex-start;
          gap: 9px;
          font-size: 0.82rem;
          color: var(--text-muted);
          padding: 5px 0;
          border-bottom: 1px dashed rgba(220, 227, 239, 0.8);
      }

      .spec-list li:last-child {
          border-bottom: none;
      }

      .spec-list li i {
          color: var(--blue);
          font-size: 0.75rem;
          margin-top: 3px;
          flex-shrink: 0;
      }

      /* Warranty badge row */
      .warranty-row {
          display: flex;
          align-items: center;
          gap: 10px;
          background: linear-gradient(90deg,
                  rgba(26, 95, 168, 0.07),
                  rgba(26, 95, 168, 0.03));
          border: 1px solid rgba(26, 95, 168, 0.15);
          border-radius: 8px;
          padding: 10px 14px;
          margin-bottom: 20px;
      }

      .warranty-row i {
          color: var(--blue);
          font-size: 1.1rem;
      }

      .warranty-row span {
          font-family: "Oswald", sans-serif;
          font-size: 0.85rem;
          color: var(--navy);
          font-weight: 600;
      }

      .warranty-row a {
          color: var(--blue);
          text-decoration: none;
          font-size: 0.78rem;
          font-weight: 700;
          margin-left: auto;
          white-space: nowrap;
      }

      .warranty-row a:hover {
          color: var(--gold);
      }

      /* Card footer buttons */
      .product-footer {
          padding: 0 28px 26px;
          display: flex;
          gap: 10px;
      }

      .btn-product-primary {
          flex: 1;
          background: var(--navy);
          color: var(--white);
          font-family: "Oswald", sans-serif;
          font-weight: 600;
          font-size: 0.82rem;
          letter-spacing: 1px;
          text-transform: uppercase;
          padding: 11px 14px;
          border-radius: 6px;
          border: none;
          text-decoration: none;
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 7px;
          transition: all 0.25s;
          cursor: pointer;
      }

      .btn-product-primary:hover {
          background: var(--blue);
          transform: translateY(-1px);
          box-shadow: 0 6px 18px rgba(13, 35, 64, 0.25);
          color: var(--white);
      }

      .btn-product-secondary {
          width: 42px;
          height: 42px;
          border-radius: 6px;
          border: 1.5px solid var(--border);
          background: transparent;
          display: flex;
          align-items: center;
          justify-content: center;
          color: var(--text-muted);
          font-size: 0.9rem;
          cursor: pointer;
          transition: all 0.25s;
          text-decoration: none;
          flex-shrink: 0;
      }

      .btn-product-secondary:hover {
          border-color: var(--gold);
          color: var(--gold);
          background: rgba(232, 160, 32, 0.06);
      }

      /* ── FEATURED / LARGE CARD ── */
      .product-card.featured-card {
          flex-direction: row;
          align-items: stretch;
          border-radius: 18px;
      }

      .product-card.featured-card .product-img-wrap {
          width: 42%;
          height: auto;
          flex-shrink: 0;
      }

      .product-card.featured-card .product-body {
          padding: 32px 34px 26px;
      }

      .product-card.featured-card .product-body h3 {
          font-size: 1.6rem;
      }

      .featured-label {
          display: inline-flex;
          align-items: center;
          gap: 6px;
          background: linear-gradient(135deg, var(--gold), var(--gold-light));
          color: var(--navy);
          font-family: "Oswald", sans-serif;
          font-size: 0.72rem;
          font-weight: 700;
          letter-spacing: 1.5px;
          text-transform: uppercase;
          padding: 4px 14px;
          border-radius: 20px;
          margin-bottom: 12px;
      }

      @media (max-width: 767px) {
          .product-card.featured-card {
              flex-direction: column;
          }

          .product-card.featured-card .product-img-wrap {
              width: 100%;
              height: 220px;
          }
      }

      /* ══════════════════════════════════
       SECTION HEADING
    ══════════════════════════════════ */
      .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;
      }

      .sec-heading p {
          color: var(--text-muted);
          max-width: 560px;
          margin: 10px auto 0;
          line-height: 1.7;
          font-size: 0.95rem;
      }

      .divider-line {
          width: 60px;
          height: 3px;
          background: var(--gold);
          margin: 10px auto 16px;
          border-radius: 2px;
      }

      /* ══════════════════════════════════
       WHY SECTION (compact)
    ══════════════════════════════════ */
      .why-strip {
          background: var(--off-white);
          padding: 64px 0;
      }

      .why-item {
          display: flex;
          gap: 18px;
          align-items: flex-start;
          padding: 22px;
          background: var(--white);
          border-radius: 12px;
          border: 1px solid var(--border);
          height: 100%;
          transition: all 0.3s;
      }

      .why-item:hover {
          transform: translateY(-5px);
          box-shadow: 0 16px 40px rgba(13, 35, 64, 0.09);
          border-color: transparent;
      }

      .why-item .icon {
          width: 52px;
          height: 52px;
          border-radius: 10px;
          background: linear-gradient(135deg, var(--navy), var(--blue));
          display: flex;
          align-items: center;
          justify-content: center;
          flex-shrink: 0;
          color: var(--gold-light);
          font-size: 1.2rem;
          box-shadow: 0 6px 16px rgba(13, 35, 64, 0.25);
      }

      .why-item h5 {
          font-size: 1rem;
          color: var(--navy);
          text-transform: uppercase;
          letter-spacing: 0.5px;
          margin-bottom: 6px;
      }

      .why-item p {
          font-size: 0.85rem;
          color: var(--text-muted);
          line-height: 1.65;
          margin: 0;
      }

      /* ══════════════════════════════════
       CTA SECTION
    ══════════════════════════════════ */
      .cta-section {
          padding: 80px 0;
          position: relative;
          overflow: hidden;
          background: linear-gradient(135deg,
                  var(--navy) 0%,
                  var(--navy-mid) 60%,
                  var(--blue) 100%);
      }

      .cta-section::before {
          content: "";
          position: absolute;
          inset: 0;
          background: 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='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/svg%3E");
      }

      .cta-glow {
          position: absolute;
          top: -100px;
          right: -100px;
          width: 500px;
          height: 500px;
          background: radial-gradient(circle,
                  rgba(232, 160, 32, 0.15) 0%,
                  transparent 60%);
          border-radius: 50%;
          animation: orb-pulse 6s ease-in-out infinite alternate;
      }

      .cta-section h2 {
          font-size: 2.4rem;
          color: var(--white);
          position: relative;
      }

      .cta-section h2 span {
          color: var(--gold-light);
      }

      .cta-section p {
          color: rgba(255, 255, 255, 0.75);
          font-size: 1rem;
          line-height: 1.75;
          margin: 14px 0 28px;
          max-width: 520px;
      }

      .btn-cta-white {
          background: var(--white);
          color: var(--navy);
          font-family: "Oswald", sans-serif;
          font-weight: 700;
          font-size: 0.9rem;
          text-transform: uppercase;
          letter-spacing: 1px;
          padding: 14px 32px;
          border-radius: 6px;
          border: none;
          text-decoration: none;
          display: inline-flex;
          align-items: center;
          gap: 8px;
          transition: all 0.25s;
          box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
      }

      .btn-cta-white:hover {
          background: var(--gold);
          color: var(--navy);
          transform: translateY(-3px);
      }

      .btn-cta-outline-white {
          background: transparent;
          color: var(--white);
          border: 2px solid rgba(255, 255, 255, 0.5);
          font-family: "Oswald", sans-serif;
          font-weight: 600;
          font-size: 0.9rem;
          text-transform: uppercase;
          letter-spacing: 1px;
          padding: 12px 28px;
          border-radius: 6px;
          text-decoration: none;
          display: inline-flex;
          align-items: center;
          gap: 8px;
          transition: all 0.25s;
      }

      .btn-cta-outline-white:hover {
          background: rgba(255, 255, 255, 0.1);
          color: var(--white);
          transform: translateY(-3px);
      }

      .cta-phone-box {
          background: rgba(255, 255, 255, 0.08);
          border: 1px solid rgba(255, 255, 255, 0.15);
          border-radius: 14px;
          padding: 28px 32px;
          text-align: center;
          backdrop-filter: blur(10px);
      }

      .cta-phone-box .ph-num {
          font-family: "Oswald", sans-serif;
          font-size: 2rem;
          font-weight: 700;
          color: var(--gold-light);
          display: block;
          text-decoration: none;
          transition: color 0.25s;
      }

      .cta-phone-box .ph-num:hover {
          color: var(--white);
      }

      .cta-phone-box p {
          color: rgba(255, 255, 255, 0.6);
          font-size: 0.82rem;
          margin: 6px 0 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 / ANIMATION HELPERS
    ══════════════════════════════════ */
      .fade-up {
          opacity: 0;
          transform: translateY(32px);
          transition:
              opacity 0.7s ease,
              transform 0.7s ease;
      }

      .fade-left {
          opacity: 0;
          transform: translateX(-32px);
          transition:
              opacity 0.7s ease,
              transform 0.7s ease;
      }

      .fade-right {
          opacity: 0;
          transform: translateX(32px);
          transition:
              opacity 0.7s ease,
              transform 0.7s ease;
      }

      .fade-up.visible,
      .fade-left.visible,
      .fade-right.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;
      }

      .d5 {
          transition-delay: 0.5s;
      }

      .d6 {
          transition-delay: 0.6s;
      }

      /* Counting number animation */
      .count-num {
          font-family: "Oswald", sans-serif;
      }

      /* Product card appear */
      .product-card {
          opacity: 0;
          transform: translateY(30px);
          transition:
              opacity 0.6s ease,
              transform 0.6s ease,
              box-shadow 0.4s,
              border-color 0.4s;
      }

      .product-card.visible {
          opacity: 1;
          transform: translateY(0);
      }

      .product-card.visible:hover {
          transform: translateY(-10px);
      }

      /* Back to top */
      #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;
      }

      @media (max-width: 767px) {
          .ann-right .ann-contact:last-of-type {
              display: none;
          }
      }