/* =========================================
       CSS CUSTOM PROPERTIES
    ========================================= */
    :root {
      --blue-dark:  #013170;
      --blue-light: #14b9f1;
      --orange:     #ff9600;
      --white:      #ffffff;
      --gray-light: #f6f6f6;
      --gray:       #e0dede;
      --text-dark:  #333333;
      --black:      #000000;
      --font-heading: 'Montserrat', sans-serif;
      --font-body:    'Open Sans', sans-serif;
    }

    /* =========================================
       RESET & BASE
    ========================================= */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      color: var(--text-dark);
      background: var(--white);
      line-height: 1.65;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; }

    .container {
      width: 90%;
      max-width: 1140px;
      margin-inline: auto;
    }

    .section { padding: 72px 0; }
    .section--dark  { background: var(--blue-dark); color: var(--white); }
    .section--gray  { background: var(--gray-light); }
    .section--white { background: var(--white); }

    .section-title {
      font-family: var(--font-heading);
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 800;
      text-align: center;
      margin-bottom: 12px;
      line-height: 1.2;
    }
    .section-subtitle {
      text-align: center;
      font-size: 1.05rem;
      margin-bottom: 48px;
      opacity: .85;
    }

    .accent { color: var(--orange); }
    .accent-blue { color: var(--blue-light); }

    /* =========================================
       TOP BAR
    ========================================= */
    .topbar {
      background: var(--blue-dark);
      color: var(--white);
      padding: 8px 0;
      font-size: .85rem;
      border-bottom: 2px solid var(--orange);
    }
    .topbar__inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 6px;
    }
    .topbar a { color: var(--orange); font-weight: 700; }
    .topbar a:hover { color: var(--blue-light); }

    .license-badge {
      background: var(--orange);
      color: var(--blue-dark);
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 4px;
      font-size: .8rem;
      white-space: nowrap;
    }

    /* =========================================
       HEADER / NAV
    ========================================= */
    .site-header {
      background: var(--white);
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 12px rgba(0,0,0,.12);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 0;
      gap: 20px;
    }
    .site-logo img {
      height: 64px;
      width: auto;
    }
    .nav-links {
      display: flex;
      list-style: none;
      gap: 8px;
      flex-wrap: wrap;
    }
    .nav-links a {
      font-family: var(--font-heading);
      font-weight: 600;
      font-size: .88rem;
      color: var(--blue-dark);
      padding: 6px 10px;
      border-radius: 4px;
      transition: background .2s, color .2s;
      text-transform: uppercase;
      letter-spacing: .04em;
    }
    .nav-links a:hover { background: var(--blue-dark); color: var(--white); }

    .btn-nav {
      background: var(--orange) !important;
      color: var(--white) !important;
      padding: 8px 18px !important;
      border-radius: 6px !important;
    }
    .btn-nav:hover { background: var(--blue-dark) !important; }

    /* hamburger hidden on desktop */
    .nav-toggle { display: none; }

    /* =========================================
       HERO
    ========================================= */
    .hero {
      position: relative;
      min-height: 600px;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--blue-dark);
    }
    .hero__bg {
      position: absolute;
      inset: 0;
      background-image: url('images/pool-fence-mesh-removable.jpg');
      background-size: cover;
      background-position: center;
      opacity: .28;
    }
    .hero__content {
      position: relative;
      z-index: 2;
      padding: 80px 0;
      max-width: 700px;
    }
    .hero__eyebrow {
      display: inline-block;
      background: var(--orange);
      color: var(--white);
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: .85rem;
      text-transform: uppercase;
      letter-spacing: .1em;
      padding: 5px 14px;
      border-radius: 4px;
      margin-bottom: 20px;
    }
    .hero__title {
      font-family: var(--font-heading);
      font-size: clamp(2rem, 5vw, 3.4rem);
      font-weight: 800;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 20px;
    }
    .hero__title span { color: var(--orange); }
    .hero__subtitle {
      color: rgba(255,255,255,.88);
      font-size: 1.1rem;
      margin-bottom: 32px;
      max-width: 560px;
    }
    .hero__badges {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 36px;
    }
    .hero__badge {
      background: rgba(255,255,255,.12);
      border: 1.5px solid rgba(255,255,255,.35);
      color: var(--white);
      padding: 6px 14px;
      border-radius: 20px;
      font-size: .85rem;
      font-weight: 600;
      font-family: var(--font-heading);
    }
    .hero__cta {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    /* =========================================
       BUTTONS
    ========================================= */
    .btn {
      display: inline-block;
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: .95rem;
      padding: 14px 28px;
      border-radius: 8px;
      transition: all .2s;
      cursor: pointer;
      border: 2px solid transparent;
      text-align: center;
    }
    .btn-primary {
      background: var(--orange);
      color: var(--white);
      border-color: var(--orange);
    }
    .btn-primary:hover {
      background: #e08500;
      border-color: #e08500;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(255,150,0,.35);
    }
    .btn-outline {
      background: transparent;
      color: var(--white);
      border-color: var(--white);
    }
    .btn-outline:hover {
      background: var(--white);
      color: var(--blue-dark);
    }
    .btn-dark {
      background: var(--blue-dark);
      color: var(--white);
      border-color: var(--blue-dark);
    }
    .btn-dark:hover {
      background: #01245a;
      transform: translateY(-2px);
    }

    /* =========================================
       EXCLUSIVE LICENSE BANNER
    ========================================= */
    .license-section {
      background: var(--orange);
      padding: 48px 0;
    }
    .license-section__inner {
      display: grid;
      gap: 32px;
      align-items: center;
      text-align: center;
    }
    .license-card {
      background: var(--white);
      border-radius: 12px;
      padding: 28px 24px;
      box-shadow: 0 4px 20px rgba(0,0,0,.12);
    }
    .license-card__county {
      font-family: var(--font-heading);
      font-size: .8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--blue-light);
      margin-bottom: 6px;
    }
    .license-card__number {
      font-family: var(--font-heading);
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--blue-dark);
      letter-spacing: .05em;
    }
    .license-card__label {
      font-size: .85rem;
      color: var(--text-dark);
      margin-top: 4px;
    }
    .license-center-text {
      color: var(--white);
    }
    .license-center-text h2 {
      font-family: var(--font-heading);
      font-size: clamp(1.3rem, 3vw, 2rem);
      font-weight: 800;
      line-height: 1.25;
      margin-bottom: 8px;
    }
    .license-center-text p {
      font-size: .95rem;
      opacity: .92;
    }

    /* =========================================
       WHY CHOOSE
    ========================================= */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 28px;
      margin-top: 48px;
    }
    .feature-card {
      background: var(--white);
      border-radius: 12px;
      padding: 32px 24px;
      box-shadow: 0 2px 16px rgba(0,0,0,.07);
      text-align: center;
      border-top: 4px solid var(--orange);
      transition: transform .2s, box-shadow .2s;
    }
    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 28px rgba(0,0,0,.13);
    }
    .feature-icon {
      width: 60px;
      height: 60px;
      background: var(--blue-dark);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px;
    }
    .feature-icon svg { width: 28px; height: 28px; fill: var(--orange); }
    .feature-card h3 {
      font-family: var(--font-heading);
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--blue-dark);
      margin-bottom: 10px;
    }
    .feature-card p { font-size: .9rem; color: #555; }

    /* =========================================
       PRODUCTS
    ========================================= */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 28px;
    }
    .product-card {
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,.1);
      background: var(--white);
      transition: transform .25s;
    }
    .product-card:hover { transform: translateY(-5px); }
    .product-card__img {
      height: 220px;
      overflow: hidden;
    }
    .product-card__img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .35s;
    }
    .product-card:hover .product-card__img img { transform: scale(1.06); }
    .product-card__body {
      padding: 24px;
    }
    .product-card__badge {
      display: inline-block;
      background: var(--blue-dark);
      color: var(--white);
      font-size: .72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .08em;
      padding: 3px 10px;
      border-radius: 4px;
      margin-bottom: 10px;
    }
    .product-card h3 {
      font-family: var(--font-heading);
      font-size: 1.2rem;
      font-weight: 800;
      color: var(--blue-dark);
      margin-bottom: 10px;
    }
    .product-card p { font-size: .9rem; color: #555; margin-bottom: 18px; }
    .product-card .btn { font-size: .88rem; padding: 10px 22px; }

    /* =========================================
       NY SPECIFIC SECTION
    ========================================= */
    .ny-section {
      background: var(--blue-dark);
      color: var(--white);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }
    .ny-section::before {
      content: 'NEW YORK';
      position: absolute;
      font-family: var(--font-heading);
      font-size: 18vw;
      font-weight: 900;
      color: rgba(255,255,255,.04);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      white-space: nowrap;
      pointer-events: none;
    }
    .ny-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    .ny-content h2 {
      font-family: var(--font-heading);
      font-size: clamp(1.6rem, 3.5vw, 2.4rem);
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 18px;
    }
    .ny-content h2 span { color: var(--orange); }
    .ny-content p { color: rgba(255,255,255,.85); margin-bottom: 16px; }
    .ny-list {
      list-style: none;
      margin: 24px 0;
    }
    .ny-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 14px;
      color: rgba(255,255,255,.9);
      font-size: .95rem;
    }
    .ny-list li::before {
      content: '✓';
      background: var(--orange);
      color: var(--white);
      width: 22px;
      height: 22px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .75rem;
      font-weight: 900;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .ny-image-stack {
      position: relative;
    }
    .ny-image-stack img {
      border-radius: 14px;
      box-shadow: 0 12px 40px rgba(0,0,0,.4);
    }
    .ny-image-badge {
      position: absolute;
      bottom: -16px;
      right: -16px;
      background: var(--orange);
      color: var(--white);
      font-family: var(--font-heading);
      font-weight: 800;
      font-size: .95rem;
      padding: 16px 20px;
      border-radius: 12px;
      text-align: center;
      line-height: 1.3;
      box-shadow: 0 6px 20px rgba(0,0,0,.25);
    }

    /* =========================================
       STATS STRIP
    ========================================= */
    .stats {
      background: var(--blue-light);
      padding: 40px 0;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      text-align: center;
    }
    .stat-item__number {
      font-family: var(--font-heading);
      font-size: 2.4rem;
      font-weight: 800;
      color: var(--white);
      line-height: 1;
    }
    .stat-item__label {
      font-size: .88rem;
      color: var(--blue-dark);
      font-weight: 600;
      margin-top: 6px;
      font-family: var(--font-heading);
    }

    /* =========================================
       GALLERY
    ========================================= */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 16px;
    }
    .gallery-item {
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 3px 12px rgba(0,0,0,.1);
    }
    .gallery-item img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      transition: transform .3s;
    }
    .gallery-item:hover img { transform: scale(1.04); }

    /* =========================================
       TESTIMONIALS
    ========================================= */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 28px;
    }
    .testimonial-card {
      background: var(--white);
      border-radius: 12px;
      padding: 28px;
      box-shadow: 0 2px 16px rgba(0,0,0,.07);
      border-left: 4px solid var(--orange);
    }
    .testimonial-stars {
      color: var(--orange);
      font-size: 1.1rem;
      margin-bottom: 14px;
    }
    .testimonial-text {
      font-style: italic;
      color: #555;
      margin-bottom: 18px;
      font-size: .95rem;
      line-height: 1.7;
    }
    .testimonial-author {
      font-family: var(--font-heading);
      font-weight: 700;
      color: var(--blue-dark);
      font-size: .9rem;
    }

    /* =========================================
       REVIEW LOGOS
    ========================================= */
    .review-logos {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 32px;
      margin-top: 40px;
    }
    .review-logos img {
      height: 44px;
      width: auto;
      filter: grayscale(30%);
      transition: filter .2s;
    }
    .review-logos img:hover { filter: none; }

    /* =========================================
       FAQ
    ========================================= */
    .faq-list { max-width: 800px; margin-inline: auto; }
    .faq-item {
      border-bottom: 1px solid var(--gray);
      padding: 20px 0;
    }
    .faq-question {
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 1rem;
      color: var(--blue-dark);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
    }
    .faq-question::after {
      content: '+';
      font-size: 1.4rem;
      color: var(--orange);
      flex-shrink: 0;
    }
    .faq-answer {
      display: none;
      font-size: .93rem;
      color: #555;
      margin-top: 12px;
      line-height: 1.7;
    }
    .faq-item.open .faq-question::after { content: '−'; }
    .faq-item.open .faq-answer { display: block; }

    /* =========================================
       CTA SECTION
    ========================================= */
    .cta-section {
      background: linear-gradient(135deg, var(--blue-dark) 0%, #024a9e 100%);
      color: var(--white);
      padding: 80px 0;
      text-align: center;
    }
    .cta-section h2 {
      font-family: var(--font-heading);
      font-size: clamp(1.7rem, 4vw, 2.8rem);
      font-weight: 800;
      margin-bottom: 16px;
    }
    .cta-section p {
      font-size: 1.05rem;
      opacity: .88;
      margin-bottom: 36px;
      max-width: 560px;
      margin-inline: auto;
      margin-bottom: 36px;
    }
    .cta-section .btn { margin: 6px; }

    /* =========================================
       CONTACT
    ========================================= */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }
    .contact-info h3 {
      font-family: var(--font-heading);
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--blue-dark);
      margin-bottom: 24px;
    }
    .contact-detail {
      display: flex;
      gap: 14px;
      margin-bottom: 20px;
      align-items: flex-start;
    }
    .contact-detail__icon {
      width: 44px;
      height: 44px;
      background: var(--blue-dark);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .contact-detail__icon svg { width: 20px; height: 20px; fill: var(--orange); }
    .contact-detail__text strong {
      display: block;
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: .85rem;
      text-transform: uppercase;
      letter-spacing: .06em;
      color: var(--blue-dark);
      margin-bottom: 3px;
    }
    .contact-detail__text span, .contact-detail__text a {
      font-size: .95rem;
      color: #555;
    }
    .contact-detail__text a:hover { color: var(--orange); }
    .license-box {
      background: var(--gray-light);
      border-radius: 10px;
      padding: 18px 20px;
      margin-top: 24px;
      border-left: 4px solid var(--orange);
    }
    .license-box__title {
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: .85rem;
      text-transform: uppercase;
      letter-spacing: .07em;
      color: var(--blue-dark);
      margin-bottom: 10px;
    }
    .license-box__item {
      display: flex;
      justify-content: space-between;
      font-size: .9rem;
      padding: 4px 0;
      color: #444;
    }
    .license-box__item span:last-child {
      font-family: var(--font-heading);
      font-weight: 700;
      color: var(--blue-dark);
    }

    /* Contact form */
    .contact-form { }
    .contact-form h3 {
      font-family: var(--font-heading);
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--blue-dark);
      margin-bottom: 24px;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .form-group { margin-bottom: 16px; }
    .form-group label {
      display: block;
      font-size: .85rem;
      font-weight: 700;
      font-family: var(--font-heading);
      color: var(--blue-dark);
      margin-bottom: 6px;
      text-transform: uppercase;
      letter-spacing: .04em;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px 16px;
      border: 2px solid var(--gray);
      border-radius: 8px;
      font-family: var(--font-body);
      font-size: .93rem;
      color: var(--text-dark);
      background: var(--white);
      transition: border-color .2s;
      outline: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: var(--blue-light); }
    .form-group textarea { resize: vertical; min-height: 110px; }
    .form-submit { width: 100%; padding: 15px; font-size: 1rem; margin-top: 6px; }

    /* =========================================
       FOOTER
    ========================================= */
    .site-footer {
      background: var(--black);
      color: rgba(255,255,255,.75);
      padding: 56px 0 28px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 48px;
    }
    .footer-brand img {
      height: 56px;
      margin-bottom: 18px;
    }
    .footer-brand p { font-size: .88rem; line-height: 1.7; max-width: 280px; }
    .footer-col h4 {
      font-family: var(--font-heading);
      font-size: .88rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: var(--orange);
      margin-bottom: 16px;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 8px; }
    .footer-col ul li a {
      font-size: .88rem;
      color: rgba(255,255,255,.65);
      transition: color .2s;
    }
    .footer-col ul li a:hover { color: var(--orange); }
    .footer-license {
      background: rgba(255,255,255,.05);
      border-radius: 8px;
      padding: 14px 16px;
      font-size: .8rem;
      margin-top: 12px;
    }
    .footer-license strong { color: var(--orange); display: block; margin-bottom: 5px; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.08);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      font-size: .82rem;
    }
    .footer-bottom a { color: var(--blue-light); }

    /* =========================================
       ASTM BADGE ROW
    ========================================= */
    .certifications {
      background: var(--gray-light);
      padding: 40px 0;
    }
    .cert-inner {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 40px;
    }
    .cert-inner img { height: 70px; width: auto; }

    /* =========================================
       MOBILE NAV
    ========================================= */
    @media (max-width: 900px) {
      .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 16px; box-shadow: 0 8px 20px rgba(0,0,0,.1); }
      .nav-links.open { display: flex; }
      .nav-toggle { display: block; background: none; border: 2px solid var(--blue-dark); border-radius: 6px; padding: 6px 10px; cursor: pointer; font-size: 1.3rem; color: var(--blue-dark); }
      .site-header { position: relative; }
      .header-inner { position: relative; }
      .ny-inner { grid-template-columns: 1fr; }
      .ny-image-badge { right: 0; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .contact-grid { grid-template-columns: 1fr; gap: 32px; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .license-section__inner { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
    }
    @media (max-width: 600px) {
      .section { padding: 48px 0; }
      .footer-grid { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .hero { min-height: 480px; }
    }
