
:root {
  --brand-dark: #111111;
  --brand-gray: #555555;
  --brand-light-gray: #888888;
  --brand-bg: #ffffff;
  --brand-bg-alt: #f9f9fa;
  --brand-highlight: #043c56;
  --brand-gold: #ce9c49;
  --brand-tan: #e8cb96;
  --brand-success: #10b981;
  --brand-error: #ef4444;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: var(--brand-bg);
  color: var(--brand-dark);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ======================================================= */
/* Styles from: Home page.html */
/* ======================================================= */

    

    

    

    /* --- MOCK HEADER --- */
    .site-header {
      width: 100%;
      padding: 40px 5%; 
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: var(--brand-bg);
      z-index: 10;
    }

    .logo {
      font-size: 1.25rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: var(--brand-dark);
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      gap: 32px; 
    }

    .nav-links a {
      text-decoration: none;
      color: var(--brand-gray);
      font-size: 0.95rem;
      font-weight: 500;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: var(--brand-highlight);
    }

    /* --- DROPDOWN NAVIGATION --- */
    .nav-dropdown {
      position: relative;
      display: inline-flex;
      align-items: center;
    }

    .dropdown-toggle {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding-bottom: 8px;
      margin-bottom: -8px;
      cursor: pointer;
    }

    .dropdown-caret {
      transition: transform 0.3s ease;
    }

    .nav-dropdown:hover .dropdown-caret,
    .nav-dropdown.active .dropdown-caret {
      transform: rotate(180deg);
    }

    .dropdown-menu {
      position: absolute;
      top: calc(100% + 12px);
      left: 50%;
      transform: translateX(-50%) translateY(10px);
      width: 820px;
      max-width: 90vw;
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 16px;
      box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.02);
      padding: 24px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s;
      z-index: 1000;
      pointer-events: none;
    }

    /* Invisible hover bridge */
    .dropdown-menu::before {
      content: '';
      position: absolute;
      top: -20px;
      left: 0;
      right: 0;
      height: 20px;
    }

    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown:focus-within .dropdown-menu,
    .nav-dropdown.open .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
      pointer-events: auto;
    }

    .dropdown-header-title {
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      color: #888888;
      margin-bottom: 16px;
      padding-bottom: 8px;
      border-bottom: 1px solid #f0f0f0;
    }

    .dropdown-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px 16px;
    }

    .dropdown-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 12px;
      border-radius: 10px;
      text-decoration: none;
      transition: background-color 0.2s ease, transform 0.2s ease;
    }

    .dropdown-item:hover {
      background-color: #f5f7fa;
      transform: translateX(2px);
    }

    .item-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background-color: #f1f5f9;
      color: var(--brand-dark, #111111);
      flex-shrink: 0;
      margin: 0;
      transition: background-color 0.2s ease, color 0.2s ease;
    }

    .item-icon svg {
      display: block;
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      margin: auto;
    }

    .dropdown-item:hover .item-icon {
      background-color: var(--brand-dark, #111111);
      color: #ffffff;
    }

    .item-text {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .item-title {
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--brand-dark, #111111);
      line-height: 1.25;
    }

    .dropdown-item:hover .item-title {
      color: var(--brand-highlight, #0056b3);
    }

    .item-desc {
      font-size: 0.73rem;
      color: #666666;
      line-height: 1.3;
    }

    .dropdown-footer {
      margin-top: 16px;
      padding-top: 14px;
      border-top: 1px solid #f0f0f0;
    }

    .dropdown-footer-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 14px;
      background-color: #f8fafc;
      border-radius: 8px;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--brand-dark, #111111);
      text-decoration: none;
      transition: background-color 0.2s ease, color 0.2s ease;
    }

    .dropdown-footer-link:hover {
      background-color: var(--brand-dark, #111111);
      color: #ffffff;
    }

    /* --- HERO SECTION --- */
    .hero {
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .hero-text-container {
      background-color: var(--brand-bg);
      padding: 5vh 5% 8vh; 
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      z-index: 2;
    }

    .badge {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--brand-light-gray);
      margin-bottom: 2.5rem; 
      padding: 8px 16px;
      border: 1px solid #eaeaea;
      border-radius: 50px;
      animation: fadeIn 1s ease-out forwards;
    }

    .badge-gold {
      color: var(--brand-gold);
      border-color: var(--brand-tan);
      background-color: rgba(232, 203, 150, 0.1);
      margin-bottom: 1.5rem;
    }

    .hero-title {
      font-size: 4.5rem;
      font-weight: 500;
      line-height: 1.15;
      letter-spacing: -0.03em;
      color: #000000;
      max-width: 1050px;
      margin-bottom: 2rem; 
      animation: fadeIn 1s ease-out 0.2s forwards;
      opacity: 0;
    }

    /* Dynamic text styling */
    .dynamic-product {
      font-weight: 300;
      font-style: italic;
      color: var(--brand-highlight); 
      display: inline-block;
      min-width: 270px; 
      text-align: left; 
      transition: opacity 0.4s ease-in-out, transform 0.3s ease-in-out;
      opacity: 1;
      transform: translateY(0px);
    }

    .hero-desc {
      font-size: 1.25rem;
      line-height: 1.6;
      color: var(--brand-gray);
      max-width: 750px;
      margin-bottom: 3.5rem; 
      font-weight: 300;
      animation: fadeIn 1s ease-out 0.4s forwards;
      opacity: 0;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 18px 44px; 
      font-size: 1.05rem;
      font-weight: 500;
      color: #ffffff;
      background-color: var(--brand-highlight);
      text-decoration: none;
      border-radius: 100px; 
      transition: all 0.3s ease;
      animation: fadeIn 1s ease-out 0.6s forwards;
      opacity: 0;
    }

    .btn:hover {
      background-color: var(--brand-dark);
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .btn-outline {
      background-color: transparent;
      color: var(--brand-dark);
      border: 1px solid #eaeaea;
      padding: 14px 32px;
      font-size: 0.95rem;
      animation: none;
      opacity: 1;
    }

    .btn-outline:hover {
      background-color: var(--brand-bg);
      border-color: var(--brand-dark);
      transform: translateY(0);
      box-shadow: none;
    }

    /* --- VIDEO SECTION WITH FADE --- */
    .hero-video-wrapper {
      position: relative;
      flex-grow: 1; 
      width: 100%;
      min-height: 50vh; 
      background-color: var(--brand-bg);
    }

    .video-fade-top {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 80px; 
      background: linear-gradient(to bottom, var(--brand-bg) 0%, rgba(255, 255, 255, 0) 100%);
      z-index: 2;
      pointer-events: none; 
    }
    
    .video-fade-bottom {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 80px; 
      background: linear-gradient(to top, var(--brand-bg) 0%, rgba(255, 255, 255, 0) 100%);
      z-index: 2;
      pointer-events: none; 
    }

    .hero-video-wrapper video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 30%; 
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
    }

    /* --- SHARED SECTION STYLES --- */
    .section-header {
      text-align: center;
      margin-bottom: 8vh;
    }

    .section-title {
      font-size: 3rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
    }

    .section-subtitle {
      font-size: 1.15rem;
      color: var(--brand-gray);
      font-weight: 300;
      max-width: 600px;
      margin: 0 auto;
    }

    /* --- ZIGZAG PRODUCTS SECTION --- */
    .products-section {
      padding: 12vh 5%;
      background-color: var(--brand-bg);
    }

    .product-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8%;
      margin-bottom: 12vh;
    }

    /* The Magic of ZigZag: Reverse every even row */
    .product-row:nth-child(even) {
      flex-direction: row-reverse;
    }

    .product-info {
      flex: 1;
      max-width: 550px;
    }

    .product-info h2 {
      font-size: 2.25rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin-bottom: 1.25rem;
      color: var(--brand-dark);
    }

    .product-info p {
      font-size: 1.1rem;
      line-height: 1.7;
      color: var(--brand-gray);
      font-weight: 300;
      margin-bottom: 1.5rem;
    }

    .product-features {
      list-style: none;
      margin-bottom: 2.5rem;
    }

    .product-features li {
      font-size: 0.95rem;
      color: var(--brand-dark);
      padding: 0.5rem 0;
      border-bottom: 1px solid #f0f0f0;
      display: flex;
      align-items: center;
    }

    .product-features li::before {
      content: "•";
      color: var(--brand-gold);
      font-weight: bold;
      display: inline-block;
      width: 1.5em;
    }

    .product-image-wrapper {
      flex: 1;
      position: relative;
    }

    .product-image-wrapper img {
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      border-radius: 20px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.04);
      transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    }
    
    .product-image-wrapper:hover img {
      transform: scale(1.03) translateY(-10px);
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), 0 15px 25px rgba(0, 0, 0, 0.1);
    }

    .image-backdrop {
      position: absolute;
      top: -5%;
      left: -5%;
      width: 100%;
      height: 100%;
      background-color: var(--brand-tan);
      opacity: 0.15;
      border-radius: 20px;
      z-index: -1;
    }
    
    .product-row:nth-child(even) .image-backdrop {
      left: 5%;
    }

    /* --- FAQ SECTION --- */
    .faq-section {
      padding: 10vh 5%;
      background-color: var(--brand-bg-alt);
    }

    .faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-item {
      border-bottom: 1px solid #eaeaea;
      padding: 1.5rem 0;
    }

    .faq-item summary {
      font-size: 1.15rem;
      font-weight: 500;
      color: var(--brand-dark);
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: color 0.3s ease;
    }

    .faq-item summary:hover {
      color: var(--brand-highlight);
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: '+';
      font-size: 1.5rem;
      color: var(--brand-gold);
      transition: transform 0.3s ease;
    }

    .faq-item[open] summary::after {
      content: '−';
    }

    .faq-item p {
      margin-top: 1rem;
      color: var(--brand-gray);
      line-height: 1.7;
      font-weight: 300;
    }

    /* --- TESTIMONIALS SECTION --- */
    .testimonials-section {
      padding: 12vh 5%;
      background-color: var(--brand-bg);
    }

    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2.5rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .testimonial-card {
      background: var(--brand-bg);
      border: 1px solid #eaeaea;
      padding: 3rem 2.5rem;
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .testimonial-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
      border-color: var(--brand-tan);
    }

    .quote-icon {
      font-size: 4rem;
      color: rgba(206, 156, 73, 0.2);
      line-height: 0;
      margin-bottom: 2rem;
      font-family: serif;
    }

    .testimonial-text {
      font-size: 1.05rem;
      line-height: 1.7;
      color: var(--brand-gray);
      font-style: italic;
      margin-bottom: 2rem;
      font-weight: 300;
    }

    .client-info h4 {
      font-size: 1rem;
      color: var(--brand-dark);
      font-weight: 700;
      margin-bottom: 0.25rem;
    }

    .client-info p {
      font-size: 0.85rem;
      color: var(--brand-light-gray);
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 500;
    }

    /* --- CONTACT SECTION --- */
    .contact-section {
      padding: 12vh 5%;
      background-color: var(--brand-highlight);
      color: #ffffff;
    }

    .contact-section .section-title {
      color: #ffffff;
    }

    .contact-section .section-subtitle {
      color: rgba(255, 255, 255, 0.7);
    }

    .contact-container {
      display: flex;
      flex-wrap: wrap;
      gap: 4rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .contact-info-wrapper {
      flex: 1;
      min-width: 300px;
    }

    .contact-detail {
      margin-bottom: 2.5rem;
    }

    .contact-detail h4 {
      color: var(--brand-gold);
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 0.5rem;
    }

    .contact-detail p, .contact-detail a {
      color: #ffffff;
      font-size: 1.15rem;
      line-height: 1.6;
      font-weight: 300;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .contact-detail a:hover {
      color: var(--brand-tan);
    }

    .contact-form-wrapper {
      flex: 1.2;
      min-width: 300px;
      background: rgba(255, 255, 255, 0.03);
      padding: 3rem;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .form-group input, 
    .form-group textarea {
      width: 100%;
      padding: 1.25rem;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      color: #ffffff;
      font-size: 1rem;
      font-family: 'Inter', sans-serif;
      outline: none;
      transition: all 0.3s ease;
    }

    .form-group input::placeholder, 
    .form-group textarea::placeholder {
      color: rgba(255, 255, 255, 0.4);
    }

    .form-group input:focus, 
    .form-group textarea:focus {
      background: rgba(255, 255, 255, 0.1);
      border-color: var(--brand-gold);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 120px;
    }

    .btn-submit {
      background-color: var(--brand-gold);
      color: #ffffff;
      font-size: 1.05rem;
      font-weight: 600;
      padding: 1.25rem;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
      margin-top: 1rem;
    }

    .btn-submit:hover {
      background-color: #b8863b;
      transform: translateY(-2px);
    }

    /* --- FOOTER --- */
    .site-footer {
      background-color: #022536; /* Darker shade of highlight */
      color: rgba(255, 255, 255, 0.5);
      text-align: center;
      padding: 2rem 5%;
      font-size: 0.9rem;
    }

    @keyframes fadeIn {
      0% { opacity: 0; transform: translateY(15px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
      .product-row { gap: 5%; }
      .contact-form-wrapper { padding: 2rem; }
    }

    @media (max-width: 768px) {
      .hero-title { font-size: 2.75rem; margin-bottom: 1.5rem; }
      .hero-desc { font-size: 1.1rem; margin-bottom: 2.5rem; }
      .hero-text-container { padding: 4vh 5% 6vh; }
      .site-header { padding: 25px 5%; }
      .nav-links { display: none; }
      .hero-video-wrapper { min-height: 45vh; }
      .hero-video-wrapper video { object-position: center 40%; } 
      .dynamic-product { min-width: 160px; }
      
      .product-row, .product-row:nth-child(even) {
        flex-direction: column;
        text-align: left;
        gap: 3rem;
      }
      
      .product-info { max-width: 100%; align-items: flex-start; text-align: left; }
      .product-features li { justify-content: flex-start; text-align: left; }
      .image-backdrop { display: none; }
      
      .section-title { font-size: 2.25rem; }
      .contact-container { flex-direction: column; gap: 3rem; }

      /* Scoped Mobile Left Alignment for Home Page */
      .home-page .hero-text-container {
        align-items: flex-start;
        text-align: left;
      }

      .home-page .badge {
        margin-left: 0;
        margin-right: auto;
      }

      .home-page .section-header {
        text-align: left;
      }

      .home-page .section-header .badge {
        margin-left: 0;
        margin-right: auto;
      }

      .home-page .product-info {
        text-align: left;
      }

      .home-page .faq-section,
      .home-page .faq-container,
      .home-page .faq-item {
        text-align: left;
      }

      .home-page .testimonials-section,
      .home-page .testimonial-card,
      .home-page .client-info {
        text-align: left;
      }

      .home-page .contact-section,
      .home-page .contact-container,
      .home-page .contact-info-wrapper,
      .home-page .contact-detail {
        text-align: left;
      }

      .home-page .btn,
      .home-page .btn-outline {
        align-self: flex-start;
      }
    }
  

/* ======================================================= */
/* Styles from: about-us.html */
/* ======================================================= */

    

    

    

    /* --- HEADER --- */
    .site-header {
      width: 100%;
      padding: 40px 5%; 
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: var(--brand-bg);
      z-index: 10;
      border-bottom: 1px solid #eaeaea;
    }

    .logo {
      font-size: 1.25rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: var(--brand-dark);
      text-transform: uppercase;
      text-decoration: none;
    }

    .nav-links {
      display: flex;
      gap: 32px; 
    }

    .nav-links a {
      text-decoration: none;
      color: var(--brand-gray);
      font-size: 0.95rem;
      font-weight: 500;
      transition: color 0.3s;
    }

    .nav-links a:hover, .nav-links a.active {
      color: var(--brand-highlight);
    }

    /* --- ABOUT HERO SECTION --- */
    .about-hero {
      background-color: var(--brand-bg-alt);
      padding: 12vh 5% 10vh; 
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .badge {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--brand-light-gray);
      margin-bottom: 2.5rem; 
      padding: 8px 16px;
      border: 1px solid #eaeaea;
      border-radius: 50px;
      animation: fadeIn 1s ease-out forwards;
    }

    .badge-gold {
      color: var(--brand-gold);
      border-color: var(--brand-tan);
      background-color: rgba(232, 203, 150, 0.1);
      margin-bottom: 1.5rem;
    }

    .hero-title {
      font-size: 4rem;
      font-weight: 500;
      line-height: 1.15;
      letter-spacing: -0.03em;
      color: #000000;
      max-width: 900px;
      margin-bottom: 1.5rem; 
      animation: fadeIn 1s ease-out 0.2s forwards;
      opacity: 0;
    }

    .hero-desc {
      font-size: 1.25rem;
      line-height: 1.6;
      color: var(--brand-gray);
      max-width: 750px;
      margin-bottom: 2rem; 
      font-weight: 300;
      animation: fadeIn 1s ease-out 0.4s forwards;
      opacity: 0;
    }

    /* --- SHARED SECTION STYLES --- */
    .section-header {
      text-align: center;
      margin-bottom: 8vh;
    }

    .section-title {
      font-size: 3rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
    }

    .section-subtitle {
      font-size: 1.15rem;
      color: var(--brand-gray);
      font-weight: 300;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.6;
    }

    /* --- ZIGZAG PROFILE SECTION --- */
    .content-section {
      padding: 10vh 5%;
      background-color: var(--brand-bg);
    }

    .content-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8%;
      margin-bottom: 12vh;
    }

    .content-row:nth-child(even) {
      flex-direction: row-reverse;
    }
    
    .content-row:last-child {
      margin-bottom: 0;
    }

    .content-info {
      flex: 1;
      max-width: 550px;
    }

    .content-info h2 {
      font-size: 2.25rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin-bottom: 1.25rem;
      color: var(--brand-dark);
    }

    .content-info p {
      font-size: 1.1rem;
      line-height: 1.7;
      color: var(--brand-gray);
      font-weight: 300;
      margin-bottom: 1.5rem;
    }

    .content-features {
      list-style: none;
      margin-bottom: 2.5rem;
    }

    .content-features li {
      font-size: 0.95rem;
      color: var(--brand-dark);
      padding: 0.5rem 0;
      border-bottom: 1px solid #f0f0f0;
      display: flex;
      align-items: flex-start;
      line-height: 1.5;
    }

    .content-features li::before {
      content: "•";
      color: var(--brand-gold);
      font-weight: bold;
      display: inline-block;
      width: 1.5em;
    }

    .content-image-wrapper {
      flex: 1;
      position: relative;
    }

    .content-image-wrapper img {
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      border-radius: 20px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.04);
      transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    }
    
    .content-image-wrapper:hover img {
      transform: scale(1.03) translateY(-10px);
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), 0 15px 25px rgba(0, 0, 0, 0.1);
    }

    .image-backdrop {
      position: absolute;
      top: -5%;
      left: -5%;
      width: 100%;
      height: 100%;
      background-color: var(--brand-tan);
      opacity: 0.15;
      border-radius: 20px;
      z-index: -1;
    }
    
    .content-row:nth-child(even) .image-backdrop {
      left: 5%;
    }

    /* --- APPROVALS & INDUSTRIES GRID --- */
    .grid-section {
      padding: 12vh 5%;
      background-color: var(--brand-bg-alt);
    }

    .tag-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
      max-width: 900px;
      margin: 0 auto 6vh;
    }

    .tag-item {
      background: var(--brand-bg);
      border: 1px solid #eaeaea;
      padding: 1rem 1.5rem;
      border-radius: 50px;
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--brand-dark);
      box-shadow: 0 4px 10px rgba(0,0,0,0.02);
      transition: all 0.3s ease;
    }

    .tag-item:hover {
      border-color: var(--brand-gold);
      color: var(--brand-highlight);
      transform: translateY(-3px);
      box-shadow: 0 8px 15px rgba(0,0,0,0.05);
    }

    .industry-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .industry-card {
      background: var(--brand-bg);
      border: 1px solid #eaeaea;
      padding: 2rem;
      border-radius: 12px;
      text-align: center;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .industry-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
      border-color: var(--brand-tan);
    }

    .industry-card h4 {
      font-size: 1.1rem;
      color: var(--brand-dark);
      font-weight: 600;
    }

    /* --- CONTACT SECTION --- */
    .contact-section {
      padding: 12vh 5%;
      background-color: var(--brand-highlight);
      color: #ffffff;
    }

    .contact-section .section-title {
      color: #ffffff;
    }

    .contact-section .section-subtitle {
      color: rgba(255, 255, 255, 0.7);
    }

    .contact-container {
      display: flex;
      flex-wrap: wrap;
      gap: 4rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .contact-info-wrapper {
      flex: 1;
      min-width: 300px;
    }

    .contact-detail {
      margin-bottom: 2.5rem;
    }

    .contact-detail h4 {
      color: var(--brand-gold);
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 0.5rem;
    }

    .contact-detail p, .contact-detail a {
      color: #ffffff;
      font-size: 1.15rem;
      line-height: 1.6;
      font-weight: 300;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .contact-detail a:hover {
      color: var(--brand-tan);
    }

    .contact-form-wrapper {
      flex: 1.2;
      min-width: 300px;
      background: rgba(255, 255, 255, 0.03);
      padding: 3rem;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .form-group input, 
    .form-group textarea {
      width: 100%;
      padding: 1.25rem;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      color: #ffffff;
      font-size: 1rem;
      font-family: 'Inter', sans-serif;
      outline: none;
      transition: all 0.3s ease;
    }

    .form-group input::placeholder, 
    .form-group textarea::placeholder {
      color: rgba(255, 255, 255, 0.4);
    }

    .form-group input:focus, 
    .form-group textarea:focus {
      background: rgba(255, 255, 255, 0.1);
      border-color: var(--brand-gold);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 120px;
    }

    .btn-submit {
      background-color: var(--brand-gold);
      color: #ffffff;
      font-size: 1.05rem;
      font-weight: 600;
      padding: 1.25rem;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
      margin-top: 1rem;
    }

    .btn-submit:hover {
      background-color: #b8863b;
      transform: translateY(-2px);
    }

    /* --- FOOTER --- */
    .site-footer {
      background-color: #022536; 
      color: rgba(255, 255, 255, 0.5);
      text-align: center;
      padding: 2rem 5%;
      font-size: 0.9rem;
    }

    @keyframes fadeIn {
      0% { opacity: 0; transform: translateY(15px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
      .content-row { gap: 5%; }
      .contact-form-wrapper { padding: 2rem; }
    }

    @media (max-width: 768px) {
      .hero-title { font-size: 2.75rem; margin-bottom: 1.5rem; }
      .hero-desc { font-size: 1.1rem; margin-bottom: 2.5rem; }
      .about-hero { padding: 8vh 5% 6vh; }
      .site-header { padding: 25px 5%; }
      .nav-links { display: none; }
      
      .content-row, .content-row:nth-child(even) {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
      }
      
      .content-info { max-width: 100%; }
      .content-features li { justify-content: center; text-align: left; }
      .image-backdrop { display: none; }
      
      .section-title { font-size: 2.25rem; }
      .contact-container { flex-direction: column; gap: 3rem; }
    }
  

/* ======================================================= */
/* Styles from: contact-us.html */
/* ======================================================= */

    

    

    

    /* --- HEADER --- */
    .site-header {
      width: 100%;
      padding: 40px 5%; 
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: var(--brand-bg);
      z-index: 10;
      border-bottom: 1px solid #eaeaea;
    }

    .logo {
      font-size: 1.25rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: var(--brand-dark);
      text-transform: uppercase;
      text-decoration: none;
    }

    .nav-links {
      display: flex;
      gap: 32px; 
    }

    .nav-links a {
      text-decoration: none;
      color: var(--brand-gray);
      font-size: 0.95rem;
      font-weight: 500;
      transition: color 0.3s;
    }

    .nav-links a:hover, .nav-links a.active {
      color: var(--brand-highlight);
    }

    /* --- PAGE HERO SECTION --- */
    .page-hero {
      background-color: var(--brand-bg-alt);
      padding: 10vh 5% 8vh; 
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .badge {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--brand-light-gray);
      margin-bottom: 2.5rem; 
      padding: 8px 16px;
      border: 1px solid #eaeaea;
      border-radius: 50px;
      animation: fadeIn 1s ease-out forwards;
    }

    .badge-gold {
      color: var(--brand-gold);
      border-color: var(--brand-tan);
      background-color: rgba(232, 203, 150, 0.1);
      margin-bottom: 1.5rem;
    }

    .hero-title {
      font-size: 3.5rem;
      font-weight: 500;
      line-height: 1.15;
      letter-spacing: -0.03em;
      color: #000000;
      max-width: 900px;
      margin-bottom: 1.5rem; 
      animation: fadeIn 1s ease-out 0.2s forwards;
      opacity: 0;
    }

    .hero-desc {
      font-size: 1.15rem;
      line-height: 1.6;
      color: var(--brand-gray);
      max-width: 650px;
      margin-bottom: 2rem; 
      font-weight: 300;
      animation: fadeIn 1s ease-out 0.4s forwards;
      opacity: 0;
    }

    /* --- INFO CARDS SECTION --- */
    .info-cards-section {
      padding: 8vh 5%;
      background-color: var(--brand-bg);
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .info-card {
      background: var(--brand-bg);
      border: 1px solid #eaeaea;
      padding: 3rem 2rem;
      border-radius: 16px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .info-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
      border-color: var(--brand-tan);
    }

    .card-icon {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
      display: inline-block;
    }

    .info-card h3 {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--brand-dark);
      margin-bottom: 1rem;
    }

    .info-card p {
      font-size: 1rem;
      line-height: 1.7;
      color: var(--brand-gray);
      font-weight: 300;
      margin-bottom: 1rem;
    }

    .info-card a {
      color: var(--brand-highlight);
      font-weight: 500;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .info-card a:hover {
      color: var(--brand-gold);
    }

    /* --- MAP SECTION --- */
    .map-section {
      width: 100%;
      height: 450px;
      background-color: #eaeaea;
      margin-bottom: -10px; /* Counter gap before next section */
    }

    .map-section iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    /* --- SHARED SECTION STYLES --- */
    .section-header {
      text-align: center;
      margin-bottom: 8vh;
    }

    .section-title {
      font-size: 3rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
    }

    .section-subtitle {
      font-size: 1.15rem;
      color: var(--brand-gray);
      font-weight: 300;
      max-width: 600px;
      margin: 0 auto;
    }

    /* --- CONTACT FORM SECTION (From Home Page) --- */
    .contact-section {
      padding: 12vh 5%;
      background-color: var(--brand-highlight);
      color: #ffffff;
    }

    .contact-section .section-title {
      color: #ffffff;
    }

    .contact-section .section-subtitle {
      color: rgba(255, 255, 255, 0.7);
    }

    .contact-container {
      display: flex;
      flex-wrap: wrap;
      gap: 4rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .contact-info-wrapper {
      flex: 1;
      min-width: 300px;
    }

    .contact-detail {
      margin-bottom: 2.5rem;
    }

    .contact-detail h4 {
      color: var(--brand-gold);
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 0.5rem;
    }

    .contact-detail p, .contact-detail a {
      color: #ffffff;
      font-size: 1.15rem;
      line-height: 1.6;
      font-weight: 300;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .contact-detail a:hover {
      color: var(--brand-tan);
    }

    .contact-form-wrapper {
      flex: 1.2;
      min-width: 300px;
      background: rgba(255, 255, 255, 0.03);
      padding: 3rem;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .form-row {
      display: flex;
      gap: 1.5rem;
    }

    .form-row .form-group {
      flex: 1;
    }

    .form-group input, 
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 1.25rem;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      color: #ffffff;
      font-size: 1rem;
      font-family: 'Inter', sans-serif;
      outline: none;
      transition: all 0.3s ease;
    }
    
    .form-group select {
      appearance: none;
      color: rgba(255, 255, 255, 0.7);
    }

    .form-group select option {
      background-color: var(--brand-highlight);
      color: #ffffff;
    }

    .form-group input::placeholder, 
    .form-group textarea::placeholder {
      color: rgba(255, 255, 255, 0.4);
    }

    .form-group input:focus, 
    .form-group textarea:focus,
    .form-group select:focus {
      background: rgba(255, 255, 255, 0.1);
      border-color: var(--brand-gold);
      color: #ffffff;
    }

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

    .btn-submit {
      background-color: var(--brand-gold);
      color: #ffffff;
      font-size: 1.05rem;
      font-weight: 600;
      padding: 1.25rem;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
      margin-top: 1rem;
    }

    .btn-submit:hover {
      background-color: #b8863b;
      transform: translateY(-2px);
    }

    /* --- FOOTER --- */
    .site-footer {
      background-color: #022536; 
      color: rgba(255, 255, 255, 0.5);
      text-align: center;
      padding: 2rem 5%;
      font-size: 0.9rem;
    }

    @keyframes fadeIn {
      0% { opacity: 0; transform: translateY(15px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
      .contact-form-wrapper { padding: 2rem; }
      .form-row { flex-direction: column; gap: 1.5rem; }
    }

    @media (max-width: 768px) {
      .hero-title { font-size: 2.5rem; margin-bottom: 1.25rem; }
      .hero-desc { font-size: 1.05rem; }
      .page-hero { padding: 6vh 5% 5vh; }
      .site-header { padding: 25px 5%; }
      .nav-links { display: none; }
      
      .section-title { font-size: 2.25rem; }
      .contact-container { flex-direction: column; gap: 3rem; }
    }
  

/* ======================================================= */
/* Styles from: Angles, Channels & Flat Bars.html */
/* ======================================================= */

    

    

    

    /* --- HEADER --- */
    .site-header {
      width: 100%;
      padding: 30px 5%; 
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: var(--brand-bg);
      z-index: 100;
      border-bottom: 1px solid #eaeaea;
    }

    .logo {
      font-size: 1.25rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: var(--brand-dark);
      text-transform: uppercase;
      text-decoration: none;
    }

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

    .nav-links a {
      text-decoration: none;
      color: var(--brand-gray);
      font-size: 0.95rem;
      font-weight: 500;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: var(--brand-highlight);
    }

    .nav-btn {
      background-color: var(--brand-highlight);
      color: #fff !important;
      padding: 10px 24px;
      border-radius: 50px;
      transition: background-color 0.3s, transform 0.3s !important;
    }

    .nav-btn:hover {
      background-color: var(--brand-dark);
      transform: translateY(-2px);
    }

    /* --- PRODUCT HERO SECTION --- */
    .product-hero {
      background-color: var(--brand-bg-alt);
      padding: 12vh 5% 10vh;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 6%;
    }

    .hero-content {
      flex: 1;
      max-width: 600px;
    }

    .badge {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      padding: 8px 16px;
      border-radius: 50px;
      animation: fadeIn 0.8s ease-out forwards;
    }

    .badge-gold {
      color: var(--brand-gold);
      border: 1px solid var(--brand-tan);
      background-color: rgba(232, 203, 150, 0.1);
      margin-bottom: 1.5rem;
    }

    .hero-title {
      font-size: 3.5rem;
      font-weight: 500;
      line-height: 1.15;
      letter-spacing: -0.03em;
      color: #000000;
      margin-bottom: 1.5rem; 
      animation: fadeIn 0.8s ease-out 0.2s forwards;
      opacity: 0;
    }

    .hero-desc {
      font-size: 1.15rem;
      line-height: 1.6;
      color: var(--brand-gray);
      margin-bottom: 2.5rem; 
      font-weight: 300;
      animation: fadeIn 0.8s ease-out 0.4s forwards;
      opacity: 0;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 18px 44px; 
      font-size: 1.05rem;
      font-weight: 600;
      color: #ffffff;
      background-color: var(--brand-highlight);
      text-decoration: none;
      border-radius: 100px; 
      transition: all 0.3s ease;
      animation: fadeIn 0.8s ease-out 0.6s forwards;
      opacity: 0;
    }

    .btn:hover {
      background-color: var(--brand-dark);
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .hero-image-wrapper {
      flex: 1;
      position: relative;
      animation: fadeIn 1s ease-out 0.3s forwards;
      opacity: 0;
    }

    .hero-image-wrapper img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

    .image-backdrop {
      position: absolute;
      top: -5%;
      right: -5%;
      width: 100%;
      height: 100%;
      background-color: var(--brand-tan);
      opacity: 0.15;
      border-radius: 20px;
      z-index: -1;
    }

    /* --- DESCRIPTION SECTION --- */
    .description-section {
      padding: 8vh 5%;
      background-color: var(--brand-bg);
      text-align: center;
    }

    .desc-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .desc-title {
      font-size: 2rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin-bottom: 1.5rem;
      color: var(--brand-dark);
    }

    .desc-text {
      font-size: 1.15rem;
      line-height: 1.8;
      color: var(--brand-gray);
      font-weight: 300;
      margin-bottom: 1.5rem;
    }

    .desc-text strong {
      font-weight: 500;
      color: var(--brand-dark);
    }

    /* --- SPECS & FEATURES SECTION --- */
    .specs-section {
      padding: 8vh 5%;
      background-color: var(--brand-bg);
    }

    .section-header {
      text-align: center;
      margin-bottom: 6vh;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
    }

    .section-subtitle {
      font-size: 1.15rem;
      color: var(--brand-gray);
      font-weight: 300;
      max-width: 700px;
      margin: 0 auto;
    }

    .specs-container {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 3rem;
    }

    .specs-table-wrapper {
      background: var(--brand-bg);
      border: 1px solid #eaeaea;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    }

    table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
    }

    th, td {
      padding: 1.5rem;
      border-bottom: 1px solid #eaeaea;
    }

    th {
      background-color: var(--brand-bg-alt);
      font-weight: 600;
      color: var(--brand-dark);
      width: 25%;
      border-right: 1px solid #eaeaea;
    }

    td {
      color: var(--brand-gray);
      font-weight: 300;
      line-height: 1.6;
    }

    tr:last-child th, tr:last-child td {
      border-bottom: none;
    }

    .type-badge {
      display: inline-block;
      background: var(--brand-bg-alt);
      border: 1px solid #eaeaea;
      padding: 6px 12px;
      border-radius: 6px;
      font-size: 0.85rem;
      margin: 4px;
      color: var(--brand-dark);
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .feature-card {
      background: var(--brand-bg-alt);
      padding: 2.5rem;
      border-radius: 16px;
      border: 1px solid #eaeaea;
    }

    .feature-icon {
      font-size: 2rem;
      color: var(--brand-gold);
      margin-bottom: 1.5rem;
    }

    .feature-title {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--brand-dark);
      margin-bottom: 1rem;
    }

    .feature-desc {
      font-size: 1rem;
      line-height: 1.6;
      color: var(--brand-gray);
      font-weight: 300;
    }

    /* --- FAQ SECTION --- */
    .faq-section {
      padding: 10vh 5%;
      background-color: var(--brand-bg-alt);
    }

    .faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-item {
      border-bottom: 1px solid #eaeaea;
      padding: 1.5rem 0;
    }

    .faq-item summary {
      font-size: 1.15rem;
      font-weight: 500;
      color: var(--brand-dark);
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: color 0.3s ease;
    }

    .faq-item summary:hover {
      color: var(--brand-highlight);
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: '+';
      font-size: 1.5rem;
      color: var(--brand-gold);
      transition: transform 0.3s ease;
    }

    .faq-item[open] summary::after {
      content: '−';
    }

    .faq-item p {
      margin-top: 1rem;
      color: var(--brand-gray);
      line-height: 1.7;
      font-weight: 300;
    }

    /* --- CONTACT SECTION (LEAD GEN) --- */
    .contact-section {
      padding: 12vh 5%;
      background-color: var(--brand-highlight);
      color: #ffffff;
    }

    .contact-section .section-title {
      color: #ffffff;
    }

    .contact-section .section-subtitle {
      color: rgba(255, 255, 255, 0.7);
    }

    .contact-container {
      display: flex;
      flex-wrap: wrap;
      gap: 4rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .contact-info-wrapper {
      flex: 1;
      min-width: 300px;
    }

    .contact-detail {
      margin-bottom: 2.5rem;
    }

    .contact-detail h4 {
      color: var(--brand-gold);
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 0.5rem;
    }

    .contact-detail p, .contact-detail a {
      color: #ffffff;
      font-size: 1.15rem;
      line-height: 1.6;
      font-weight: 300;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .contact-detail a:hover {
      color: var(--brand-tan);
    }

    .contact-form-wrapper {
      flex: 1.2;
      min-width: 300px;
      background: rgba(255, 255, 255, 0.03);
      padding: 3rem;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .form-group input, 
    .form-group textarea {
      width: 100%;
      padding: 1.25rem;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      color: #ffffff;
      font-size: 1rem;
      font-family: 'Inter', sans-serif;
      outline: none;
      transition: all 0.3s ease;
    }

    .form-group input::placeholder, 
    .form-group textarea::placeholder {
      color: rgba(255, 255, 255, 0.4);
    }

    .form-group input:focus, 
    .form-group textarea:focus {
      background: rgba(255, 255, 255, 0.1);
      border-color: var(--brand-gold);
    }

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

    .btn-submit {
      background-color: var(--brand-gold);
      color: #ffffff;
      font-size: 1.1rem;
      font-weight: 600;
      padding: 1.25rem;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
      margin-top: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .btn-submit:hover {
      background-color: #b8863b;
      transform: translateY(-2px);
    }

    /* --- FOOTER --- */
    .site-footer {
      background-color: #022536; 
      color: rgba(255, 255, 255, 0.5);
      text-align: center;
      padding: 2rem 5%;
      font-size: 0.9rem;
    }

    @keyframes fadeIn {
      0% { opacity: 0; transform: translateY(15px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
      .product-hero { flex-direction: column; padding-top: 8vh; gap: 3rem; }
      .hero-content { text-align: center; max-width: 100%; }
      .image-backdrop { right: 5%; top: 5%; }
      .contact-form-wrapper { padding: 2rem; }
      
      th, td { display: block; width: 100%; border-right: none; }
      th { border-bottom: 1px solid #eaeaea; }
      td { border-bottom: 4px solid var(--brand-bg-alt); }
    }

    @media (max-width: 768px) {
      .hero-title { font-size: 2.5rem; }
      .hero-desc, .desc-text { font-size: 1rem; }
      .desc-title { font-size: 1.75rem; }
      .nav-links { display: none; }
      .contact-container { flex-direction: column; gap: 3rem; }
      .section-title { font-size: 2.25rem; }
    }
  

/* ======================================================= */
/* Styles from: Butt-Weld Fittings.html */
/* ======================================================= */

    

    

    

    /* --- HEADER --- */
    .site-header {
      width: 100%;
      padding: 30px 5%; 
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: var(--brand-bg);
      z-index: 100;
      border-bottom: 1px solid #eaeaea;
    }

    .logo {
      font-size: 1.25rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: var(--brand-dark);
      text-transform: uppercase;
      text-decoration: none;
    }

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

    .nav-links a {
      text-decoration: none;
      color: var(--brand-gray);
      font-size: 0.95rem;
      font-weight: 500;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: var(--brand-highlight);
    }

    .nav-btn {
      background-color: var(--brand-highlight);
      color: #fff !important;
      padding: 10px 24px;
      border-radius: 50px;
      transition: background-color 0.3s, transform 0.3s !important;
    }

    .nav-btn:hover {
      background-color: var(--brand-dark);
      transform: translateY(-2px);
    }

    /* --- PRODUCT HERO SECTION --- */
    .product-hero {
      background-color: var(--brand-bg-alt);
      padding: 12vh 5% 10vh;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 6%;
    }

    .hero-content {
      flex: 1;
      max-width: 600px;
    }

    .badge {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      padding: 8px 16px;
      border-radius: 50px;
      animation: fadeIn 0.8s ease-out forwards;
    }

    .badge-gold {
      color: var(--brand-gold);
      border: 1px solid var(--brand-tan);
      background-color: rgba(232, 203, 150, 0.1);
      margin-bottom: 1.5rem;
    }

    .hero-title {
      font-size: 3.5rem;
      font-weight: 500;
      line-height: 1.15;
      letter-spacing: -0.03em;
      color: #000000;
      margin-bottom: 1.5rem; 
      animation: fadeIn 0.8s ease-out 0.2s forwards;
      opacity: 0;
    }

    .hero-desc {
      font-size: 1.15rem;
      line-height: 1.6;
      color: var(--brand-gray);
      margin-bottom: 2.5rem; 
      font-weight: 300;
      animation: fadeIn 0.8s ease-out 0.4s forwards;
      opacity: 0;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 18px 44px; 
      font-size: 1.05rem;
      font-weight: 600;
      color: #ffffff;
      background-color: var(--brand-highlight);
      text-decoration: none;
      border-radius: 100px; 
      transition: all 0.3s ease;
      animation: fadeIn 0.8s ease-out 0.6s forwards;
      opacity: 0;
    }

    .btn:hover {
      background-color: var(--brand-dark);
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .hero-image-wrapper {
      flex: 1;
      position: relative;
      animation: fadeIn 1s ease-out 0.3s forwards;
      opacity: 0;
    }

    .hero-image-wrapper img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

    .image-backdrop {
      position: absolute;
      top: -5%;
      right: -5%;
      width: 100%;
      height: 100%;
      background-color: var(--brand-tan);
      opacity: 0.15;
      border-radius: 20px;
      z-index: -1;
    }

    /* --- DESCRIPTION SECTION --- */
    .description-section {
      padding: 8vh 5%;
      background-color: var(--brand-bg);
      text-align: center;
    }

    .desc-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .desc-title {
      font-size: 2rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin-bottom: 1.5rem;
      color: var(--brand-dark);
    }

    .desc-text {
      font-size: 1.15rem;
      line-height: 1.8;
      color: var(--brand-gray);
      font-weight: 300;
      margin-bottom: 1.5rem;
    }

    .desc-text strong {
      font-weight: 500;
      color: var(--brand-dark);
    }

    /* --- SPECS & FEATURES SECTION --- */
    .specs-section {
      padding: 8vh 5%;
      background-color: var(--brand-bg);
    }

    .section-header {
      text-align: center;
      margin-bottom: 6vh;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
    }

    .section-subtitle {
      font-size: 1.15rem;
      color: var(--brand-gray);
      font-weight: 300;
      max-width: 700px;
      margin: 0 auto;
    }

    .specs-container {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 3rem;
    }

    .specs-table-wrapper {
      background: var(--brand-bg);
      border: 1px solid #eaeaea;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    }

    table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
    }

    th, td {
      padding: 1.5rem;
      border-bottom: 1px solid #eaeaea;
    }

    th {
      background-color: var(--brand-bg-alt);
      font-weight: 600;
      color: var(--brand-dark);
      width: 25%;
      border-right: 1px solid #eaeaea;
    }

    td {
      color: var(--brand-gray);
      font-weight: 300;
      line-height: 1.6;
    }

    tr:last-child th, tr:last-child td {
      border-bottom: none;
    }

    .type-badge {
      display: inline-block;
      background: var(--brand-bg-alt);
      border: 1px solid #eaeaea;
      padding: 6px 12px;
      border-radius: 6px;
      font-size: 0.85rem;
      margin: 4px;
      color: var(--brand-dark);
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .feature-card {
      background: var(--brand-bg-alt);
      padding: 2.5rem;
      border-radius: 16px;
      border: 1px solid #eaeaea;
    }

    .feature-icon {
      font-size: 2rem;
      color: var(--brand-gold);
      margin-bottom: 1.5rem;
    }

    .feature-title {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--brand-dark);
      margin-bottom: 1rem;
    }

    .feature-desc {
      font-size: 1rem;
      line-height: 1.6;
      color: var(--brand-gray);
      font-weight: 300;
    }

    /* --- FAQ SECTION --- */
    .faq-section {
      padding: 10vh 5%;
      background-color: var(--brand-bg-alt);
    }

    .faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-item {
      border-bottom: 1px solid #eaeaea;
      padding: 1.5rem 0;
    }

    .faq-item summary {
      font-size: 1.15rem;
      font-weight: 500;
      color: var(--brand-dark);
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: color 0.3s ease;
    }

    .faq-item summary:hover {
      color: var(--brand-highlight);
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: '+';
      font-size: 1.5rem;
      color: var(--brand-gold);
      transition: transform 0.3s ease;
    }

    .faq-item[open] summary::after {
      content: '−';
    }

    .faq-item p {
      margin-top: 1rem;
      color: var(--brand-gray);
      line-height: 1.7;
      font-weight: 300;
    }

    /* --- CONTACT SECTION (LEAD GEN) --- */
    .contact-section {
      padding: 12vh 5%;
      background-color: var(--brand-highlight);
      color: #ffffff;
    }

    .contact-section .section-title {
      color: #ffffff;
    }

    .contact-section .section-subtitle {
      color: rgba(255, 255, 255, 0.7);
    }

    .contact-container {
      display: flex;
      flex-wrap: wrap;
      gap: 4rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .contact-info-wrapper {
      flex: 1;
      min-width: 300px;
    }

    .contact-detail {
      margin-bottom: 2.5rem;
    }

    .contact-detail h4 {
      color: var(--brand-gold);
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 0.5rem;
    }

    .contact-detail p, .contact-detail a {
      color: #ffffff;
      font-size: 1.15rem;
      line-height: 1.6;
      font-weight: 300;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .contact-detail a:hover {
      color: var(--brand-tan);
    }

    .contact-form-wrapper {
      flex: 1.2;
      min-width: 300px;
      background: rgba(255, 255, 255, 0.03);
      padding: 3rem;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .form-group input, 
    .form-group textarea {
      width: 100%;
      padding: 1.25rem;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      color: #ffffff;
      font-size: 1rem;
      font-family: 'Inter', sans-serif;
      outline: none;
      transition: all 0.3s ease;
    }

    .form-group input::placeholder, 
    .form-group textarea::placeholder {
      color: rgba(255, 255, 255, 0.4);
    }

    .form-group input:focus, 
    .form-group textarea:focus {
      background: rgba(255, 255, 255, 0.1);
      border-color: var(--brand-gold);
    }

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

    .btn-submit {
      background-color: var(--brand-gold);
      color: #ffffff;
      font-size: 1.1rem;
      font-weight: 600;
      padding: 1.25rem;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
      margin-top: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .btn-submit:hover {
      background-color: #b8863b;
      transform: translateY(-2px);
    }

    /* --- FOOTER --- */
    .site-footer {
      background-color: #022536; 
      color: rgba(255, 255, 255, 0.5);
      text-align: center;
      padding: 2rem 5%;
      font-size: 0.9rem;
    }

    @keyframes fadeIn {
      0% { opacity: 0; transform: translateY(15px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
      .product-hero { flex-direction: column; padding-top: 8vh; gap: 3rem; }
      .hero-content { text-align: center; max-width: 100%; }
      .image-backdrop { right: 5%; top: 5%; }
      .contact-form-wrapper { padding: 2rem; }
      
      th, td { display: block; width: 100%; border-right: none; }
      th { border-bottom: 1px solid #eaeaea; }
      td { border-bottom: 4px solid var(--brand-bg-alt); }
    }

    @media (max-width: 768px) {
      .hero-title { font-size: 2.5rem; }
      .hero-desc, .desc-text { font-size: 1rem; }
      .desc-title { font-size: 1.75rem; }
      .nav-links { display: none; }
      .contact-container { flex-direction: column; gap: 3rem; }
      .section-title { font-size: 2.25rem; }
    }
  

/* ======================================================= */
/* Styles from: Dairy & Sanitary Tube Fittings.html */
/* ======================================================= */

    

    

    

    /* --- HEADER --- */
    .site-header {
      width: 100%;
      padding: 30px 5%; 
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: var(--brand-bg);
      z-index: 100;
      border-bottom: 1px solid #eaeaea;
    }

    .logo {
      font-size: 1.25rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: var(--brand-dark);
      text-transform: uppercase;
      text-decoration: none;
    }

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

    .nav-links a {
      text-decoration: none;
      color: var(--brand-gray);
      font-size: 0.95rem;
      font-weight: 500;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: var(--brand-highlight);
    }

    .nav-btn {
      background-color: var(--brand-highlight);
      color: #fff !important;
      padding: 10px 24px;
      border-radius: 50px;
      transition: background-color 0.3s, transform 0.3s !important;
    }

    .nav-btn:hover {
      background-color: var(--brand-dark);
      transform: translateY(-2px);
    }

    /* --- PRODUCT HERO SECTION --- */
    .product-hero {
      background-color: var(--brand-bg-alt);
      padding: 12vh 5% 10vh;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 6%;
    }

    .hero-content {
      flex: 1;
      max-width: 600px;
    }

    .badge {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      padding: 8px 16px;
      border-radius: 50px;
      animation: fadeIn 0.8s ease-out forwards;
    }

    .badge-gold {
      color: var(--brand-gold);
      border: 1px solid var(--brand-tan);
      background-color: rgba(232, 203, 150, 0.1);
      margin-bottom: 1.5rem;
    }

    .hero-title {
      font-size: 3.5rem;
      font-weight: 500;
      line-height: 1.15;
      letter-spacing: -0.03em;
      color: #000000;
      margin-bottom: 1.5rem; 
      animation: fadeIn 0.8s ease-out 0.2s forwards;
      opacity: 0;
    }

    .hero-desc {
      font-size: 1.15rem;
      line-height: 1.6;
      color: var(--brand-gray);
      margin-bottom: 2.5rem; 
      font-weight: 300;
      animation: fadeIn 0.8s ease-out 0.4s forwards;
      opacity: 0;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 18px 44px; 
      font-size: 1.05rem;
      font-weight: 600;
      color: #ffffff;
      background-color: var(--brand-highlight);
      text-decoration: none;
      border-radius: 100px; 
      transition: all 0.3s ease;
      animation: fadeIn 0.8s ease-out 0.6s forwards;
      opacity: 0;
    }

    .btn:hover {
      background-color: var(--brand-dark);
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .hero-image-wrapper {
      flex: 1;
      position: relative;
      animation: fadeIn 1s ease-out 0.3s forwards;
      opacity: 0;
    }

    .hero-image-wrapper img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

    .image-backdrop {
      position: absolute;
      top: -5%;
      right: -5%;
      width: 100%;
      height: 100%;
      background-color: var(--brand-tan);
      opacity: 0.15;
      border-radius: 20px;
      z-index: -1;
    }

    /* --- DESCRIPTION SECTION --- */
    .description-section {
      padding: 8vh 5%;
      background-color: var(--brand-bg);
      text-align: center;
    }

    .desc-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .desc-title {
      font-size: 2rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin-bottom: 1.5rem;
      color: var(--brand-dark);
    }

    .desc-text {
      font-size: 1.15rem;
      line-height: 1.8;
      color: var(--brand-gray);
      font-weight: 300;
      margin-bottom: 1.5rem;
    }

    .desc-text strong {
      font-weight: 500;
      color: var(--brand-dark);
    }

    /* --- SPECS & FEATURES SECTION --- */
    .specs-section {
      padding: 8vh 5%;
      background-color: var(--brand-bg);
    }

    .section-header {
      text-align: center;
      margin-bottom: 6vh;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
    }

    .section-subtitle {
      font-size: 1.15rem;
      color: var(--brand-gray);
      font-weight: 300;
      max-width: 700px;
      margin: 0 auto;
    }

    .specs-container {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 3rem;
    }

    .specs-table-wrapper {
      background: var(--brand-bg);
      border: 1px solid #eaeaea;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    }

    table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
    }

    th, td {
      padding: 1.5rem;
      border-bottom: 1px solid #eaeaea;
    }

    th {
      background-color: var(--brand-bg-alt);
      font-weight: 600;
      color: var(--brand-dark);
      width: 25%;
      border-right: 1px solid #eaeaea;
    }

    td {
      color: var(--brand-gray);
      font-weight: 300;
      line-height: 1.6;
    }

    tr:last-child th, tr:last-child td {
      border-bottom: none;
    }

    .type-badge {
      display: inline-block;
      background: var(--brand-bg-alt);
      border: 1px solid #eaeaea;
      padding: 6px 12px;
      border-radius: 6px;
      font-size: 0.85rem;
      margin: 4px;
      color: var(--brand-dark);
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .feature-card {
      background: var(--brand-bg-alt);
      padding: 2.5rem;
      border-radius: 16px;
      border: 1px solid #eaeaea;
    }

    .feature-icon {
      font-size: 2rem;
      color: var(--brand-gold);
      margin-bottom: 1.5rem;
    }

    .feature-title {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--brand-dark);
      margin-bottom: 1rem;
    }

    .feature-desc {
      font-size: 1rem;
      line-height: 1.6;
      color: var(--brand-gray);
      font-weight: 300;
    }

    /* --- FAQ SECTION --- */
    .faq-section {
      padding: 10vh 5%;
      background-color: var(--brand-bg-alt);
    }

    .faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-item {
      border-bottom: 1px solid #eaeaea;
      padding: 1.5rem 0;
    }

    .faq-item summary {
      font-size: 1.15rem;
      font-weight: 500;
      color: var(--brand-dark);
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: color 0.3s ease;
    }

    .faq-item summary:hover {
      color: var(--brand-highlight);
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: '+';
      font-size: 1.5rem;
      color: var(--brand-gold);
      transition: transform 0.3s ease;
    }

    .faq-item[open] summary::after {
      content: '−';
    }

    .faq-item p {
      margin-top: 1rem;
      color: var(--brand-gray);
      line-height: 1.7;
      font-weight: 300;
    }

    /* --- CONTACT SECTION (LEAD GEN) --- */
    .contact-section {
      padding: 12vh 5%;
      background-color: var(--brand-highlight);
      color: #ffffff;
    }

    .contact-section .section-title {
      color: #ffffff;
    }

    .contact-section .section-subtitle {
      color: rgba(255, 255, 255, 0.7);
    }

    .contact-container {
      display: flex;
      flex-wrap: wrap;
      gap: 4rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .contact-info-wrapper {
      flex: 1;
      min-width: 300px;
    }

    .contact-detail {
      margin-bottom: 2.5rem;
    }

    .contact-detail h4 {
      color: var(--brand-gold);
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 0.5rem;
    }

    .contact-detail p, .contact-detail a {
      color: #ffffff;
      font-size: 1.15rem;
      line-height: 1.6;
      font-weight: 300;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .contact-detail a:hover {
      color: var(--brand-tan);
    }

    .contact-form-wrapper {
      flex: 1.2;
      min-width: 300px;
      background: rgba(255, 255, 255, 0.03);
      padding: 3rem;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .form-group input, 
    .form-group textarea {
      width: 100%;
      padding: 1.25rem;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      color: #ffffff;
      font-size: 1rem;
      font-family: 'Inter', sans-serif;
      outline: none;
      transition: all 0.3s ease;
    }

    .form-group input::placeholder, 
    .form-group textarea::placeholder {
      color: rgba(255, 255, 255, 0.4);
    }

    .form-group input:focus, 
    .form-group textarea:focus {
      background: rgba(255, 255, 255, 0.1);
      border-color: var(--brand-gold);
    }

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

    .btn-submit {
      background-color: var(--brand-gold);
      color: #ffffff;
      font-size: 1.1rem;
      font-weight: 600;
      padding: 1.25rem;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
      margin-top: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .btn-submit:hover {
      background-color: #b8863b;
      transform: translateY(-2px);
    }

    /* --- FOOTER --- */
    .site-footer {
      background-color: #022536; 
      color: rgba(255, 255, 255, 0.5);
      text-align: center;
      padding: 2rem 5%;
      font-size: 0.9rem;
    }

    @keyframes fadeIn {
      0% { opacity: 0; transform: translateY(15px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
      .product-hero { flex-direction: column; padding-top: 8vh; gap: 3rem; }
      .hero-content { text-align: center; max-width: 100%; }
      .image-backdrop { right: 5%; top: 5%; }
      .contact-form-wrapper { padding: 2rem; }
      
      th, td { display: block; width: 100%; border-right: none; }
      th { border-bottom: 1px solid #eaeaea; }
      td { border-bottom: 4px solid var(--brand-bg-alt); }
    }

    @media (max-width: 768px) {
      .hero-title { font-size: 2.5rem; }
      .hero-desc, .desc-text { font-size: 1rem; }
      .desc-title { font-size: 1.75rem; }
      .nav-links { display: none; }
      .contact-container { flex-direction: column; gap: 3rem; }
      .section-title { font-size: 2.25rem; }
    }
  

/* ======================================================= */
/* Styles from: Ferrule Fittings.html */
/* ======================================================= */

    

    

    

    /* --- HEADER --- */
    .site-header {
      width: 100%;
      padding: 30px 5%; 
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: var(--brand-bg);
      z-index: 100;
      border-bottom: 1px solid #eaeaea;
    }

    .logo {
      font-size: 1.25rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: var(--brand-dark);
      text-transform: uppercase;
      text-decoration: none;
    }

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

    .nav-links a {
      text-decoration: none;
      color: var(--brand-gray);
      font-size: 0.95rem;
      font-weight: 500;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: var(--brand-highlight);
    }

    .nav-btn {
      background-color: var(--brand-highlight);
      color: #fff !important;
      padding: 10px 24px;
      border-radius: 50px;
      transition: background-color 0.3s, transform 0.3s !important;
    }

    .nav-btn:hover {
      background-color: var(--brand-dark);
      transform: translateY(-2px);
    }

    /* --- PRODUCT HERO SECTION --- */
    .product-hero {
      background-color: var(--brand-bg-alt);
      padding: 12vh 5% 10vh;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 6%;
    }

    .hero-content {
      flex: 1;
      max-width: 600px;
    }

    .badge {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      padding: 8px 16px;
      border-radius: 50px;
      animation: fadeIn 0.8s ease-out forwards;
    }

    .badge-gold {
      color: var(--brand-gold);
      border: 1px solid var(--brand-tan);
      background-color: rgba(232, 203, 150, 0.1);
      margin-bottom: 1.5rem;
    }

    .hero-title {
      font-size: 3.5rem;
      font-weight: 500;
      line-height: 1.15;
      letter-spacing: -0.03em;
      color: #000000;
      margin-bottom: 1.5rem; 
      animation: fadeIn 0.8s ease-out 0.2s forwards;
      opacity: 0;
    }

    .hero-desc {
      font-size: 1.15rem;
      line-height: 1.6;
      color: var(--brand-gray);
      margin-bottom: 2.5rem; 
      font-weight: 300;
      animation: fadeIn 0.8s ease-out 0.4s forwards;
      opacity: 0;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 18px 44px; 
      font-size: 1.05rem;
      font-weight: 600;
      color: #ffffff;
      background-color: var(--brand-highlight);
      text-decoration: none;
      border-radius: 100px; 
      transition: all 0.3s ease;
      animation: fadeIn 0.8s ease-out 0.6s forwards;
      opacity: 0;
    }

    .btn:hover {
      background-color: var(--brand-dark);
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .hero-image-wrapper {
      flex: 1;
      position: relative;
      animation: fadeIn 1s ease-out 0.3s forwards;
      opacity: 0;
    }

    .hero-image-wrapper img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

    .image-backdrop {
      position: absolute;
      top: -5%;
      right: -5%;
      width: 100%;
      height: 100%;
      background-color: var(--brand-tan);
      opacity: 0.15;
      border-radius: 20px;
      z-index: -1;
    }

    /* --- DESCRIPTION SECTION --- */
    .description-section {
      padding: 8vh 5%;
      background-color: var(--brand-bg);
      text-align: center;
    }

    .desc-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .desc-title {
      font-size: 2rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin-bottom: 1.5rem;
      color: var(--brand-dark);
    }

    .desc-text {
      font-size: 1.15rem;
      line-height: 1.8;
      color: var(--brand-gray);
      font-weight: 300;
      margin-bottom: 1.5rem;
    }

    .desc-text strong {
      font-weight: 500;
      color: var(--brand-dark);
    }

    /* --- SPECS & FEATURES SECTION --- */
    .specs-section {
      padding: 8vh 5%;
      background-color: var(--brand-bg);
    }

    .section-header {
      text-align: center;
      margin-bottom: 6vh;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
    }

    .section-subtitle {
      font-size: 1.15rem;
      color: var(--brand-gray);
      font-weight: 300;
      max-width: 700px;
      margin: 0 auto;
    }

    .specs-container {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 3rem;
    }

    .specs-table-wrapper {
      background: var(--brand-bg);
      border: 1px solid #eaeaea;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    }

    table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
    }

    th, td {
      padding: 1.5rem;
      border-bottom: 1px solid #eaeaea;
    }

    th {
      background-color: var(--brand-bg-alt);
      font-weight: 600;
      color: var(--brand-dark);
      width: 25%;
      border-right: 1px solid #eaeaea;
    }

    td {
      color: var(--brand-gray);
      font-weight: 300;
      line-height: 1.6;
    }

    tr:last-child th, tr:last-child td {
      border-bottom: none;
    }

    .type-badge {
      display: inline-block;
      background: var(--brand-bg-alt);
      border: 1px solid #eaeaea;
      padding: 6px 12px;
      border-radius: 6px;
      font-size: 0.85rem;
      margin: 4px;
      color: var(--brand-dark);
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .feature-card {
      background: var(--brand-bg-alt);
      padding: 2.5rem;
      border-radius: 16px;
      border: 1px solid #eaeaea;
    }

    .feature-icon {
      font-size: 2rem;
      color: var(--brand-gold);
      margin-bottom: 1.5rem;
    }

    .feature-title {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--brand-dark);
      margin-bottom: 1rem;
    }

    .feature-desc {
      font-size: 1rem;
      line-height: 1.6;
      color: var(--brand-gray);
      font-weight: 300;
    }

    /* --- FAQ SECTION --- */
    .faq-section {
      padding: 10vh 5%;
      background-color: var(--brand-bg-alt);
    }

    .faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-item {
      border-bottom: 1px solid #eaeaea;
      padding: 1.5rem 0;
    }

    .faq-item summary {
      font-size: 1.15rem;
      font-weight: 500;
      color: var(--brand-dark);
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: color 0.3s ease;
    }

    .faq-item summary:hover {
      color: var(--brand-highlight);
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: '+';
      font-size: 1.5rem;
      color: var(--brand-gold);
      transition: transform 0.3s ease;
    }

    .faq-item[open] summary::after {
      content: '−';
    }

    .faq-item p {
      margin-top: 1rem;
      color: var(--brand-gray);
      line-height: 1.7;
      font-weight: 300;
    }

    /* --- CONTACT SECTION (LEAD GEN) --- */
    .contact-section {
      padding: 12vh 5%;
      background-color: var(--brand-highlight);
      color: #ffffff;
    }

    .contact-section .section-title {
      color: #ffffff;
    }

    .contact-section .section-subtitle {
      color: rgba(255, 255, 255, 0.7);
    }

    .contact-container {
      display: flex;
      flex-wrap: wrap;
      gap: 4rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .contact-info-wrapper {
      flex: 1;
      min-width: 300px;
    }

    .contact-detail {
      margin-bottom: 2.5rem;
    }

    .contact-detail h4 {
      color: var(--brand-gold);
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 0.5rem;
    }

    .contact-detail p, .contact-detail a {
      color: #ffffff;
      font-size: 1.15rem;
      line-height: 1.6;
      font-weight: 300;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .contact-detail a:hover {
      color: var(--brand-tan);
    }

    .contact-form-wrapper {
      flex: 1.2;
      min-width: 300px;
      background: rgba(255, 255, 255, 0.03);
      padding: 3rem;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .form-group input, 
    .form-group textarea {
      width: 100%;
      padding: 1.25rem;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      color: #ffffff;
      font-size: 1rem;
      font-family: 'Inter', sans-serif;
      outline: none;
      transition: all 0.3s ease;
    }

    .form-group input::placeholder, 
    .form-group textarea::placeholder {
      color: rgba(255, 255, 255, 0.4);
    }

    .form-group input:focus, 
    .form-group textarea:focus {
      background: rgba(255, 255, 255, 0.1);
      border-color: var(--brand-gold);
    }

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

    .btn-submit {
      background-color: var(--brand-gold);
      color: #ffffff;
      font-size: 1.1rem;
      font-weight: 600;
      padding: 1.25rem;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
      margin-top: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .btn-submit:hover {
      background-color: #b8863b;
      transform: translateY(-2px);
    }

    /* --- FOOTER --- */
    .site-footer {
      background-color: #022536; 
      color: rgba(255, 255, 255, 0.5);
      text-align: center;
      padding: 2rem 5%;
      font-size: 0.9rem;
    }

    @keyframes fadeIn {
      0% { opacity: 0; transform: translateY(15px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
      .product-hero { flex-direction: column; padding-top: 8vh; gap: 3rem; }
      .hero-content { text-align: center; max-width: 100%; }
      .image-backdrop { right: 5%; top: 5%; }
      .contact-form-wrapper { padding: 2rem; }
      
      th, td { display: block; width: 100%; border-right: none; }
      th { border-bottom: 1px solid #eaeaea; }
      td { border-bottom: 4px solid var(--brand-bg-alt); }
    }

    @media (max-width: 768px) {
      .hero-title { font-size: 2.5rem; }
      .hero-desc, .desc-text { font-size: 1rem; }
      .desc-title { font-size: 1.75rem; }
      .nav-links { display: none; }
      .contact-container { flex-direction: column; gap: 3rem; }
      .section-title { font-size: 2.25rem; }
    }
  

/* ======================================================= */
/* Styles from: Flanges.html */
/* ======================================================= */

    

    

    

    /* --- HEADER --- */
    .site-header {
      width: 100%;
      padding: 30px 5%; 
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: var(--brand-bg);
      z-index: 100;
      border-bottom: 1px solid #eaeaea;
    }

    .logo {
      font-size: 1.25rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: var(--brand-dark);
      text-transform: uppercase;
      text-decoration: none;
    }

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

    .nav-links a {
      text-decoration: none;
      color: var(--brand-gray);
      font-size: 0.95rem;
      font-weight: 500;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: var(--brand-highlight);
    }

    .nav-btn {
      background-color: var(--brand-highlight);
      color: #fff !important;
      padding: 10px 24px;
      border-radius: 50px;
      transition: background-color 0.3s, transform 0.3s !important;
    }

    .nav-btn:hover {
      background-color: var(--brand-dark);
      transform: translateY(-2px);
    }

    /* --- PRODUCT HERO SECTION --- */
    .product-hero {
      background-color: var(--brand-bg-alt);
      padding: 12vh 5% 10vh;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 6%;
    }

    .hero-content {
      flex: 1;
      max-width: 600px;
    }

    .badge {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      padding: 8px 16px;
      border-radius: 50px;
      animation: fadeIn 0.8s ease-out forwards;
    }

    .badge-gold {
      color: var(--brand-gold);
      border: 1px solid var(--brand-tan);
      background-color: rgba(232, 203, 150, 0.1);
      margin-bottom: 1.5rem;
    }

    .hero-title {
      font-size: 3.5rem;
      font-weight: 500;
      line-height: 1.15;
      letter-spacing: -0.03em;
      color: #000000;
      margin-bottom: 1.5rem; 
      animation: fadeIn 0.8s ease-out 0.2s forwards;
      opacity: 0;
    }

    .hero-desc {
      font-size: 1.15rem;
      line-height: 1.6;
      color: var(--brand-gray);
      margin-bottom: 2.5rem; 
      font-weight: 300;
      animation: fadeIn 0.8s ease-out 0.4s forwards;
      opacity: 0;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 18px 44px; 
      font-size: 1.05rem;
      font-weight: 600;
      color: #ffffff;
      background-color: var(--brand-highlight);
      text-decoration: none;
      border-radius: 100px; 
      transition: all 0.3s ease;
      animation: fadeIn 0.8s ease-out 0.6s forwards;
      opacity: 0;
    }

    .btn:hover {
      background-color: var(--brand-dark);
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .hero-image-wrapper {
      flex: 1;
      position: relative;
      animation: fadeIn 1s ease-out 0.3s forwards;
      opacity: 0;
    }

    .hero-image-wrapper img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

    .image-backdrop {
      position: absolute;
      top: -5%;
      right: -5%;
      width: 100%;
      height: 100%;
      background-color: var(--brand-tan);
      opacity: 0.15;
      border-radius: 20px;
      z-index: -1;
    }

    /* --- DESCRIPTION SECTION --- */
    .description-section {
      padding: 8vh 5%;
      background-color: var(--brand-bg);
      text-align: center;
    }

    .desc-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .desc-title {
      font-size: 2rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin-bottom: 1.5rem;
      color: var(--brand-dark);
    }

    .desc-text {
      font-size: 1.15rem;
      line-height: 1.8;
      color: var(--brand-gray);
      font-weight: 300;
      margin-bottom: 1.5rem;
    }

    .desc-text strong {
      font-weight: 500;
      color: var(--brand-dark);
    }

    /* --- SPECS & FEATURES SECTION --- */
    .specs-section {
      padding: 8vh 5%;
      background-color: var(--brand-bg);
    }

    .section-header {
      text-align: center;
      margin-bottom: 6vh;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
    }

    .section-subtitle {
      font-size: 1.15rem;
      color: var(--brand-gray);
      font-weight: 300;
      max-width: 700px;
      margin: 0 auto;
    }

    .specs-container {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 3rem;
    }

    .specs-table-wrapper {
      background: var(--brand-bg);
      border: 1px solid #eaeaea;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    }

    table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
    }

    th, td {
      padding: 1.5rem;
      border-bottom: 1px solid #eaeaea;
    }

    th {
      background-color: var(--brand-bg-alt);
      font-weight: 600;
      color: var(--brand-dark);
      width: 25%;
      border-right: 1px solid #eaeaea;
    }

    td {
      color: var(--brand-gray);
      font-weight: 300;
      line-height: 1.6;
    }

    tr:last-child th, tr:last-child td {
      border-bottom: none;
    }

    .type-badge {
      display: inline-block;
      background: var(--brand-bg-alt);
      border: 1px solid #eaeaea;
      padding: 6px 12px;
      border-radius: 6px;
      font-size: 0.85rem;
      margin: 4px;
      color: var(--brand-dark);
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .feature-card {
      background: var(--brand-bg-alt);
      padding: 2.5rem;
      border-radius: 16px;
      border: 1px solid #eaeaea;
    }

    .feature-icon {
      font-size: 2rem;
      color: var(--brand-gold);
      margin-bottom: 1.5rem;
    }

    .feature-title {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--brand-dark);
      margin-bottom: 1rem;
    }

    .feature-desc {
      font-size: 1rem;
      line-height: 1.6;
      color: var(--brand-gray);
      font-weight: 300;
    }

    /* --- FAQ SECTION --- */
    .faq-section {
      padding: 10vh 5%;
      background-color: var(--brand-bg-alt);
    }

    .faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-item {
      border-bottom: 1px solid #eaeaea;
      padding: 1.5rem 0;
    }

    .faq-item summary {
      font-size: 1.15rem;
      font-weight: 500;
      color: var(--brand-dark);
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: color 0.3s ease;
    }

    .faq-item summary:hover {
      color: var(--brand-highlight);
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: '+';
      font-size: 1.5rem;
      color: var(--brand-gold);
      transition: transform 0.3s ease;
    }

    .faq-item[open] summary::after {
      content: '−';
    }

    .faq-item p {
      margin-top: 1rem;
      color: var(--brand-gray);
      line-height: 1.7;
      font-weight: 300;
    }

    /* --- CONTACT SECTION (LEAD GEN) --- */
    .contact-section {
      padding: 12vh 5%;
      background-color: var(--brand-highlight);
      color: #ffffff;
    }

    .contact-section .section-title {
      color: #ffffff;
    }

    .contact-section .section-subtitle {
      color: rgba(255, 255, 255, 0.7);
    }

    .contact-container {
      display: flex;
      flex-wrap: wrap;
      gap: 4rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .contact-info-wrapper {
      flex: 1;
      min-width: 300px;
    }

    .contact-detail {
      margin-bottom: 2.5rem;
    }

    .contact-detail h4 {
      color: var(--brand-gold);
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 0.5rem;
    }

    .contact-detail p, .contact-detail a {
      color: #ffffff;
      font-size: 1.15rem;
      line-height: 1.6;
      font-weight: 300;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .contact-detail a:hover {
      color: var(--brand-tan);
    }

    .contact-form-wrapper {
      flex: 1.2;
      min-width: 300px;
      background: rgba(255, 255, 255, 0.03);
      padding: 3rem;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .form-group input, 
    .form-group textarea {
      width: 100%;
      padding: 1.25rem;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      color: #ffffff;
      font-size: 1rem;
      font-family: 'Inter', sans-serif;
      outline: none;
      transition: all 0.3s ease;
    }

    .form-group input::placeholder, 
    .form-group textarea::placeholder {
      color: rgba(255, 255, 255, 0.4);
    }

    .form-group input:focus, 
    .form-group textarea:focus {
      background: rgba(255, 255, 255, 0.1);
      border-color: var(--brand-gold);
    }

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

    .btn-submit {
      background-color: var(--brand-gold);
      color: #ffffff;
      font-size: 1.1rem;
      font-weight: 600;
      padding: 1.25rem;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
      margin-top: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .btn-submit:hover {
      background-color: #b8863b;
      transform: translateY(-2px);
    }

    /* --- FOOTER --- */
    .site-footer {
      background-color: #022536; 
      color: rgba(255, 255, 255, 0.5);
      text-align: center;
      padding: 2rem 5%;
      font-size: 0.9rem;
    }

    @keyframes fadeIn {
      0% { opacity: 0; transform: translateY(15px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
      .product-hero { flex-direction: column; padding-top: 8vh; gap: 3rem; }
      .hero-content { text-align: center; max-width: 100%; }
      .image-backdrop { right: 5%; top: 5%; }
      .contact-form-wrapper { padding: 2rem; }
      
      th, td { display: block; width: 100%; border-right: none; }
      th { border-bottom: 1px solid #eaeaea; }
      td { border-bottom: 4px solid var(--brand-bg-alt); }
    }

    @media (max-width: 768px) {
      .hero-title { font-size: 2.5rem; }
      .hero-desc, .desc-text { font-size: 1rem; }
      .desc-title { font-size: 1.75rem; }
      .nav-links { display: none; }
      .contact-container { flex-direction: column; gap: 3rem; }
      .section-title { font-size: 2.25rem; }
    }
  

/* ======================================================= */
/* Styles from: Pipes & Tubes.html */
/* ======================================================= */

    

    

    

    /* --- HEADER --- */
    .site-header {
      width: 100%;
      padding: 30px 5%; 
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: var(--brand-bg);
      z-index: 100;
      border-bottom: 1px solid #eaeaea;
    }

    .logo {
      font-size: 1.25rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: var(--brand-dark);
      text-transform: uppercase;
      text-decoration: none;
    }

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

    .nav-links a {
      text-decoration: none;
      color: var(--brand-gray);
      font-size: 0.95rem;
      font-weight: 500;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: var(--brand-highlight);
    }

    .nav-btn {
      background-color: var(--brand-highlight);
      color: #fff !important;
      padding: 10px 24px;
      border-radius: 50px;
      transition: background-color 0.3s, transform 0.3s !important;
    }

    .nav-btn:hover {
      background-color: var(--brand-dark);
      transform: translateY(-2px);
    }

    /* --- PRODUCT HERO SECTION --- */
    .product-hero {
      background-color: var(--brand-bg-alt);
      padding: 12vh 5% 10vh;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 6%;
    }

    .hero-content {
      flex: 1;
      max-width: 600px;
    }

    .badge {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      padding: 8px 16px;
      border-radius: 50px;
      animation: fadeIn 0.8s ease-out forwards;
    }

    .badge-gold {
      color: var(--brand-gold);
      border: 1px solid var(--brand-tan);
      background-color: rgba(232, 203, 150, 0.1);
      margin-bottom: 1.5rem;
    }

    .hero-title {
      font-size: 3.5rem;
      font-weight: 500;
      line-height: 1.15;
      letter-spacing: -0.03em;
      color: #000000;
      margin-bottom: 1.5rem; 
      animation: fadeIn 0.8s ease-out 0.2s forwards;
      opacity: 0;
    }

    .hero-desc {
      font-size: 1.15rem;
      line-height: 1.6;
      color: var(--brand-gray);
      margin-bottom: 2.5rem; 
      font-weight: 300;
      animation: fadeIn 0.8s ease-out 0.4s forwards;
      opacity: 0;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 18px 44px; 
      font-size: 1.05rem;
      font-weight: 600;
      color: #ffffff;
      background-color: var(--brand-highlight);
      text-decoration: none;
      border-radius: 100px; 
      transition: all 0.3s ease;
      animation: fadeIn 0.8s ease-out 0.6s forwards;
      opacity: 0;
    }

    .btn:hover {
      background-color: var(--brand-dark);
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .hero-image-wrapper {
      flex: 1;
      position: relative;
      animation: fadeIn 1s ease-out 0.3s forwards;
      opacity: 0;
    }

    .hero-image-wrapper img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

    .image-backdrop {
      position: absolute;
      top: -5%;
      right: -5%;
      width: 100%;
      height: 100%;
      background-color: var(--brand-tan);
      opacity: 0.15;
      border-radius: 20px;
      z-index: -1;
    }

    /* --- DESCRIPTION SECTION --- */
    .description-section {
      padding: 8vh 5%;
      background-color: var(--brand-bg);
      text-align: center;
    }

    .desc-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .desc-title {
      font-size: 2rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin-bottom: 1.5rem;
      color: var(--brand-dark);
    }

    .desc-text {
      font-size: 1.15rem;
      line-height: 1.8;
      color: var(--brand-gray);
      font-weight: 300;
      margin-bottom: 1.5rem;
    }

    .desc-text strong {
      font-weight: 500;
      color: var(--brand-dark);
    }

    /* --- SPECS & FEATURES SECTION --- */
    .specs-section {
      padding: 8vh 5%;
      background-color: var(--brand-bg);
    }

    .section-header {
      text-align: center;
      margin-bottom: 6vh;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
    }

    .section-subtitle {
      font-size: 1.15rem;
      color: var(--brand-gray);
      font-weight: 300;
      max-width: 700px;
      margin: 0 auto;
    }

    .specs-container {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 3rem;
    }

    .specs-table-wrapper {
      background: var(--brand-bg);
      border: 1px solid #eaeaea;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    }

    table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
    }

    th, td {
      padding: 1.5rem;
      border-bottom: 1px solid #eaeaea;
    }

    th {
      background-color: var(--brand-bg-alt);
      font-weight: 600;
      color: var(--brand-dark);
      width: 25%;
      border-right: 1px solid #eaeaea;
    }

    td {
      color: var(--brand-gray);
      font-weight: 300;
      line-height: 1.6;
    }

    tr:last-child th, tr:last-child td {
      border-bottom: none;
    }

    .type-badge {
      display: inline-block;
      background: var(--brand-bg-alt);
      border: 1px solid #eaeaea;
      padding: 6px 12px;
      border-radius: 6px;
      font-size: 0.85rem;
      margin: 4px;
      color: var(--brand-dark);
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .feature-card {
      background: var(--brand-bg-alt);
      padding: 2.5rem;
      border-radius: 16px;
      border: 1px solid #eaeaea;
    }

    .feature-icon {
      font-size: 2rem;
      color: var(--brand-gold);
      margin-bottom: 1.5rem;
    }

    .feature-title {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--brand-dark);
      margin-bottom: 1rem;
    }

    .feature-desc {
      font-size: 1rem;
      line-height: 1.6;
      color: var(--brand-gray);
      font-weight: 300;
    }

    /* --- FAQ SECTION --- */
    .faq-section {
      padding: 10vh 5%;
      background-color: var(--brand-bg-alt);
    }

    .faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-item {
      border-bottom: 1px solid #eaeaea;
      padding: 1.5rem 0;
    }

    .faq-item summary {
      font-size: 1.15rem;
      font-weight: 500;
      color: var(--brand-dark);
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: color 0.3s ease;
    }

    .faq-item summary:hover {
      color: var(--brand-highlight);
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: '+';
      font-size: 1.5rem;
      color: var(--brand-gold);
      transition: transform 0.3s ease;
    }

    .faq-item[open] summary::after {
      content: '−';
    }

    .faq-item p {
      margin-top: 1rem;
      color: var(--brand-gray);
      line-height: 1.7;
      font-weight: 300;
    }

    /* --- CONTACT SECTION (LEAD GEN) --- */
    .contact-section {
      padding: 12vh 5%;
      background-color: var(--brand-highlight);
      color: #ffffff;
    }

    .contact-section .section-title {
      color: #ffffff;
    }

    .contact-section .section-subtitle {
      color: rgba(255, 255, 255, 0.7);
    }

    .contact-container {
      display: flex;
      flex-wrap: wrap;
      gap: 4rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .contact-info-wrapper {
      flex: 1;
      min-width: 300px;
    }

    .contact-detail {
      margin-bottom: 2.5rem;
    }

    .contact-detail h4 {
      color: var(--brand-gold);
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 0.5rem;
    }

    .contact-detail p, .contact-detail a {
      color: #ffffff;
      font-size: 1.15rem;
      line-height: 1.6;
      font-weight: 300;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .contact-detail a:hover {
      color: var(--brand-tan);
    }

    .contact-form-wrapper {
      flex: 1.2;
      min-width: 300px;
      background: rgba(255, 255, 255, 0.03);
      padding: 3rem;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .form-group input, 
    .form-group textarea {
      width: 100%;
      padding: 1.25rem;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      color: #ffffff;
      font-size: 1rem;
      font-family: 'Inter', sans-serif;
      outline: none;
      transition: all 0.3s ease;
    }

    .form-group input::placeholder, 
    .form-group textarea::placeholder {
      color: rgba(255, 255, 255, 0.4);
    }

    .form-group input:focus, 
    .form-group textarea:focus {
      background: rgba(255, 255, 255, 0.1);
      border-color: var(--brand-gold);
    }

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

    .btn-submit {
      background-color: var(--brand-gold);
      color: #ffffff;
      font-size: 1.1rem;
      font-weight: 600;
      padding: 1.25rem;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
      margin-top: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .btn-submit:hover {
      background-color: #b8863b;
      transform: translateY(-2px);
    }

    /* --- FOOTER --- */
    .site-footer {
      background-color: #022536; 
      color: rgba(255, 255, 255, 0.5);
      text-align: center;
      padding: 2rem 5%;
      font-size: 0.9rem;
    }

    @keyframes fadeIn {
      0% { opacity: 0; transform: translateY(15px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
      .product-hero { flex-direction: column; padding-top: 8vh; gap: 3rem; }
      .hero-content { text-align: center; max-width: 100%; }
      .image-backdrop { right: 5%; top: 5%; }
      .contact-form-wrapper { padding: 2rem; }
      
      th, td { display: block; width: 100%; border-right: none; }
      th { border-bottom: 1px solid #eaeaea; }
      td { border-bottom: 4px solid var(--brand-bg-alt); }
    }

    @media (max-width: 768px) {
      .hero-title { font-size: 2.5rem; }
      .hero-desc, .desc-text { font-size: 1rem; }
      .desc-title { font-size: 1.75rem; }
      .nav-links { display: none; }
      .contact-container { flex-direction: column; gap: 3rem; }
      .section-title { font-size: 2.25rem; }
    }
  

/* ======================================================= */
/* Styles from: Round Bars.html */
/* ======================================================= */

    

    

    

    /* --- HEADER --- */
    .site-header {
      width: 100%;
      padding: 30px 5%; 
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: var(--brand-bg);
      z-index: 100;
      border-bottom: 1px solid #eaeaea;
    }

    .logo {
      font-size: 1.25rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: var(--brand-dark);
      text-transform: uppercase;
      text-decoration: none;
    }

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

    .nav-links a {
      text-decoration: none;
      color: var(--brand-gray);
      font-size: 0.95rem;
      font-weight: 500;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: var(--brand-highlight);
    }

    .nav-btn {
      background-color: var(--brand-highlight);
      color: #fff !important;
      padding: 10px 24px;
      border-radius: 50px;
      transition: background-color 0.3s, transform 0.3s !important;
    }

    .nav-btn:hover {
      background-color: var(--brand-dark);
      transform: translateY(-2px);
    }

    /* --- PRODUCT HERO SECTION --- */
    .product-hero {
      background-color: var(--brand-bg-alt);
      padding: 12vh 5% 10vh;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 6%;
    }

    .hero-content {
      flex: 1;
      max-width: 600px;
    }

    .badge {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      padding: 8px 16px;
      border-radius: 50px;
      animation: fadeIn 0.8s ease-out forwards;
    }

    .badge-gold {
      color: var(--brand-gold);
      border: 1px solid var(--brand-tan);
      background-color: rgba(232, 203, 150, 0.1);
      margin-bottom: 1.5rem;
    }

    .hero-title {
      font-size: 3.5rem;
      font-weight: 500;
      line-height: 1.15;
      letter-spacing: -0.03em;
      color: #000000;
      margin-bottom: 1.5rem; 
      animation: fadeIn 0.8s ease-out 0.2s forwards;
      opacity: 0;
    }

    .hero-desc {
      font-size: 1.15rem;
      line-height: 1.6;
      color: var(--brand-gray);
      margin-bottom: 2.5rem; 
      font-weight: 300;
      animation: fadeIn 0.8s ease-out 0.4s forwards;
      opacity: 0;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 18px 44px; 
      font-size: 1.05rem;
      font-weight: 600;
      color: #ffffff;
      background-color: var(--brand-highlight);
      text-decoration: none;
      border-radius: 100px; 
      transition: all 0.3s ease;
      animation: fadeIn 0.8s ease-out 0.6s forwards;
      opacity: 0;
    }

    .btn:hover {
      background-color: var(--brand-dark);
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .hero-image-wrapper {
      flex: 1;
      position: relative;
      animation: fadeIn 1s ease-out 0.3s forwards;
      opacity: 0;
    }

    .hero-image-wrapper img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

    .image-backdrop {
      position: absolute;
      top: -5%;
      right: -5%;
      width: 100%;
      height: 100%;
      background-color: var(--brand-tan);
      opacity: 0.15;
      border-radius: 20px;
      z-index: -1;
    }

    /* --- DESCRIPTION SECTION --- */
    .description-section {
      padding: 8vh 5%;
      background-color: var(--brand-bg);
      text-align: center;
    }

    .desc-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .desc-title {
      font-size: 2rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin-bottom: 1.5rem;
      color: var(--brand-dark);
    }

    .desc-text {
      font-size: 1.15rem;
      line-height: 1.8;
      color: var(--brand-gray);
      font-weight: 300;
      margin-bottom: 1.5rem;
    }

    .desc-text strong {
      font-weight: 500;
      color: var(--brand-dark);
    }

    /* --- SPECS & FEATURES SECTION --- */
    .specs-section {
      padding: 8vh 5%;
      background-color: var(--brand-bg);
    }

    .section-header {
      text-align: center;
      margin-bottom: 6vh;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
    }

    .section-subtitle {
      font-size: 1.15rem;
      color: var(--brand-gray);
      font-weight: 300;
      max-width: 700px;
      margin: 0 auto;
    }

    .specs-container {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 3rem;
    }

    .specs-table-wrapper {
      background: var(--brand-bg);
      border: 1px solid #eaeaea;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    }

    table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
    }

    th, td {
      padding: 1.5rem;
      border-bottom: 1px solid #eaeaea;
    }

    th {
      background-color: var(--brand-bg-alt);
      font-weight: 600;
      color: var(--brand-dark);
      width: 25%;
      border-right: 1px solid #eaeaea;
    }

    td {
      color: var(--brand-gray);
      font-weight: 300;
      line-height: 1.6;
    }

    tr:last-child th, tr:last-child td {
      border-bottom: none;
    }

    .type-badge {
      display: inline-block;
      background: var(--brand-bg-alt);
      border: 1px solid #eaeaea;
      padding: 6px 12px;
      border-radius: 6px;
      font-size: 0.85rem;
      margin: 4px;
      color: var(--brand-dark);
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .feature-card {
      background: var(--brand-bg-alt);
      padding: 2.5rem;
      border-radius: 16px;
      border: 1px solid #eaeaea;
    }

    .feature-icon {
      font-size: 2rem;
      color: var(--brand-gold);
      margin-bottom: 1.5rem;
    }

    .feature-title {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--brand-dark);
      margin-bottom: 1rem;
    }

    .feature-desc {
      font-size: 1rem;
      line-height: 1.6;
      color: var(--brand-gray);
      font-weight: 300;
    }

    /* --- FAQ SECTION --- */
    .faq-section {
      padding: 10vh 5%;
      background-color: var(--brand-bg-alt);
    }

    .faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-item {
      border-bottom: 1px solid #eaeaea;
      padding: 1.5rem 0;
    }

    .faq-item summary {
      font-size: 1.15rem;
      font-weight: 500;
      color: var(--brand-dark);
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: color 0.3s ease;
    }

    .faq-item summary:hover {
      color: var(--brand-highlight);
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: '+';
      font-size: 1.5rem;
      color: var(--brand-gold);
      transition: transform 0.3s ease;
    }

    .faq-item[open] summary::after {
      content: '−';
    }

    .faq-item p {
      margin-top: 1rem;
      color: var(--brand-gray);
      line-height: 1.7;
      font-weight: 300;
    }

    /* --- CONTACT SECTION (LEAD GEN) --- */
    .contact-section {
      padding: 12vh 5%;
      background-color: var(--brand-highlight);
      color: #ffffff;
    }

    .contact-section .section-title {
      color: #ffffff;
    }

    .contact-section .section-subtitle {
      color: rgba(255, 255, 255, 0.7);
    }

    .contact-container {
      display: flex;
      flex-wrap: wrap;
      gap: 4rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .contact-info-wrapper {
      flex: 1;
      min-width: 300px;
    }

    .contact-detail {
      margin-bottom: 2.5rem;
    }

    .contact-detail h4 {
      color: var(--brand-gold);
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 0.5rem;
    }

    .contact-detail p, .contact-detail a {
      color: #ffffff;
      font-size: 1.15rem;
      line-height: 1.6;
      font-weight: 300;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .contact-detail a:hover {
      color: var(--brand-tan);
    }

    .contact-form-wrapper {
      flex: 1.2;
      min-width: 300px;
      background: rgba(255, 255, 255, 0.03);
      padding: 3rem;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .form-group input, 
    .form-group textarea {
      width: 100%;
      padding: 1.25rem;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      color: #ffffff;
      font-size: 1rem;
      font-family: 'Inter', sans-serif;
      outline: none;
      transition: all 0.3s ease;
    }

    .form-group input::placeholder, 
    .form-group textarea::placeholder {
      color: rgba(255, 255, 255, 0.4);
    }

    .form-group input:focus, 
    .form-group textarea:focus {
      background: rgba(255, 255, 255, 0.1);
      border-color: var(--brand-gold);
    }

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

    .btn-submit {
      background-color: var(--brand-gold);
      color: #ffffff;
      font-size: 1.1rem;
      font-weight: 600;
      padding: 1.25rem;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
      margin-top: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .btn-submit:hover {
      background-color: #b8863b;
      transform: translateY(-2px);
    }

    /* --- FOOTER --- */
    .site-footer {
      background-color: #022536; 
      color: rgba(255, 255, 255, 0.5);
      text-align: center;
      padding: 2rem 5%;
      font-size: 0.9rem;
    }

    @keyframes fadeIn {
      0% { opacity: 0; transform: translateY(15px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
      .product-hero { flex-direction: column; padding-top: 8vh; gap: 3rem; }
      .hero-content { text-align: center; max-width: 100%; }
      .image-backdrop { right: 5%; top: 5%; }
      .contact-form-wrapper { padding: 2rem; }
      
      th, td { display: block; width: 100%; border-right: none; }
      th { border-bottom: 1px solid #eaeaea; }
      td { border-bottom: 4px solid var(--brand-bg-alt); }
    }

    @media (max-width: 768px) {
      .hero-title { font-size: 2.5rem; }
      .hero-desc, .desc-text { font-size: 1rem; }
      .desc-title { font-size: 1.75rem; }
      .nav-links { display: none; }
      .contact-container { flex-direction: column; gap: 3rem; }
      .section-title { font-size: 2.25rem; }
    }
  

/* ======================================================= */
/* Styles from: Sanitary T.C. (Tri-Clover) Fittings.html */
/* ======================================================= */

    

    

    

    /* --- HEADER --- */
    .site-header {
      width: 100%;
      padding: 30px 5%; 
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: var(--brand-bg);
      z-index: 100;
      border-bottom: 1px solid #eaeaea;
    }

    .logo {
      font-size: 1.25rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: var(--brand-dark);
      text-transform: uppercase;
      text-decoration: none;
    }

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

    .nav-links a {
      text-decoration: none;
      color: var(--brand-gray);
      font-size: 0.95rem;
      font-weight: 500;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: var(--brand-highlight);
    }

    .nav-btn {
      background-color: var(--brand-highlight);
      color: #fff !important;
      padding: 10px 24px;
      border-radius: 50px;
      transition: background-color 0.3s, transform 0.3s !important;
    }

    .nav-btn:hover {
      background-color: var(--brand-dark);
      transform: translateY(-2px);
    }

    /* --- PRODUCT HERO SECTION --- */
    .product-hero {
      background-color: var(--brand-bg-alt);
      padding: 12vh 5% 10vh;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 6%;
    }

    .hero-content {
      flex: 1;
      max-width: 600px;
    }

    .badge {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      padding: 8px 16px;
      border-radius: 50px;
      animation: fadeIn 0.8s ease-out forwards;
    }

    .badge-gold {
      color: var(--brand-gold);
      border: 1px solid var(--brand-tan);
      background-color: rgba(232, 203, 150, 0.1);
      margin-bottom: 1.5rem;
    }

    .hero-title {
      font-size: 3.5rem;
      font-weight: 500;
      line-height: 1.15;
      letter-spacing: -0.03em;
      color: #000000;
      margin-bottom: 1.5rem; 
      animation: fadeIn 0.8s ease-out 0.2s forwards;
      opacity: 0;
    }

    .hero-desc {
      font-size: 1.15rem;
      line-height: 1.6;
      color: var(--brand-gray);
      margin-bottom: 2.5rem; 
      font-weight: 300;
      animation: fadeIn 0.8s ease-out 0.4s forwards;
      opacity: 0;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 18px 44px; 
      font-size: 1.05rem;
      font-weight: 600;
      color: #ffffff;
      background-color: var(--brand-highlight);
      text-decoration: none;
      border-radius: 100px; 
      transition: all 0.3s ease;
      animation: fadeIn 0.8s ease-out 0.6s forwards;
      opacity: 0;
    }

    .btn:hover {
      background-color: var(--brand-dark);
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .hero-image-wrapper {
      flex: 1;
      position: relative;
      animation: fadeIn 1s ease-out 0.3s forwards;
      opacity: 0;
    }

    .hero-image-wrapper img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

    .image-backdrop {
      position: absolute;
      top: -5%;
      right: -5%;
      width: 100%;
      height: 100%;
      background-color: var(--brand-tan);
      opacity: 0.15;
      border-radius: 20px;
      z-index: -1;
    }

    /* --- DESCRIPTION SECTION --- */
    .description-section {
      padding: 8vh 5%;
      background-color: var(--brand-bg);
      text-align: center;
    }

    .desc-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .desc-title {
      font-size: 2rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin-bottom: 1.5rem;
      color: var(--brand-dark);
    }

    .desc-text {
      font-size: 1.15rem;
      line-height: 1.8;
      color: var(--brand-gray);
      font-weight: 300;
      margin-bottom: 1.5rem;
    }

    .desc-text strong {
      font-weight: 500;
      color: var(--brand-dark);
    }

    /* --- SPECS & FEATURES SECTION --- */
    .specs-section {
      padding: 8vh 5%;
      background-color: var(--brand-bg);
    }

    .section-header {
      text-align: center;
      margin-bottom: 6vh;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
    }

    .section-subtitle {
      font-size: 1.15rem;
      color: var(--brand-gray);
      font-weight: 300;
      max-width: 700px;
      margin: 0 auto;
    }

    .specs-container {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 3rem;
    }

    .specs-table-wrapper {
      background: var(--brand-bg);
      border: 1px solid #eaeaea;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    }

    table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
    }

    th, td {
      padding: 1.5rem;
      border-bottom: 1px solid #eaeaea;
    }

    th {
      background-color: var(--brand-bg-alt);
      font-weight: 600;
      color: var(--brand-dark);
      width: 25%;
      border-right: 1px solid #eaeaea;
    }

    td {
      color: var(--brand-gray);
      font-weight: 300;
      line-height: 1.6;
    }

    tr:last-child th, tr:last-child td {
      border-bottom: none;
    }

    .type-badge {
      display: inline-block;
      background: var(--brand-bg-alt);
      border: 1px solid #eaeaea;
      padding: 6px 12px;
      border-radius: 6px;
      font-size: 0.85rem;
      margin: 4px;
      color: var(--brand-dark);
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .feature-card {
      background: var(--brand-bg-alt);
      padding: 2.5rem;
      border-radius: 16px;
      border: 1px solid #eaeaea;
    }

    .feature-icon {
      font-size: 2rem;
      color: var(--brand-gold);
      margin-bottom: 1.5rem;
    }

    .feature-title {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--brand-dark);
      margin-bottom: 1rem;
    }

    .feature-desc {
      font-size: 1rem;
      line-height: 1.6;
      color: var(--brand-gray);
      font-weight: 300;
    }

    /* --- FAQ SECTION --- */
    .faq-section {
      padding: 10vh 5%;
      background-color: var(--brand-bg-alt);
    }

    .faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-item {
      border-bottom: 1px solid #eaeaea;
      padding: 1.5rem 0;
    }

    .faq-item summary {
      font-size: 1.15rem;
      font-weight: 500;
      color: var(--brand-dark);
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: color 0.3s ease;
    }

    .faq-item summary:hover {
      color: var(--brand-highlight);
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: '+';
      font-size: 1.5rem;
      color: var(--brand-gold);
      transition: transform 0.3s ease;
    }

    .faq-item[open] summary::after {
      content: '−';
    }

    .faq-item p {
      margin-top: 1rem;
      color: var(--brand-gray);
      line-height: 1.7;
      font-weight: 300;
    }

    /* --- CONTACT SECTION (LEAD GEN) --- */
    .contact-section {
      padding: 12vh 5%;
      background-color: var(--brand-highlight);
      color: #ffffff;
    }

    .contact-section .section-title {
      color: #ffffff;
    }

    .contact-section .section-subtitle {
      color: rgba(255, 255, 255, 0.7);
    }

    .contact-container {
      display: flex;
      flex-wrap: wrap;
      gap: 4rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .contact-info-wrapper {
      flex: 1;
      min-width: 300px;
    }

    .contact-detail {
      margin-bottom: 2.5rem;
    }

    .contact-detail h4 {
      color: var(--brand-gold);
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 0.5rem;
    }

    .contact-detail p, .contact-detail a {
      color: #ffffff;
      font-size: 1.15rem;
      line-height: 1.6;
      font-weight: 300;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .contact-detail a:hover {
      color: var(--brand-tan);
    }

    .contact-form-wrapper {
      flex: 1.2;
      min-width: 300px;
      background: rgba(255, 255, 255, 0.03);
      padding: 3rem;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .form-group input, 
    .form-group textarea {
      width: 100%;
      padding: 1.25rem;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      color: #ffffff;
      font-size: 1rem;
      font-family: 'Inter', sans-serif;
      outline: none;
      transition: all 0.3s ease;
    }

    .form-group input::placeholder, 
    .form-group textarea::placeholder {
      color: rgba(255, 255, 255, 0.4);
    }

    .form-group input:focus, 
    .form-group textarea:focus {
      background: rgba(255, 255, 255, 0.1);
      border-color: var(--brand-gold);
    }

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

    .btn-submit {
      background-color: var(--brand-gold);
      color: #ffffff;
      font-size: 1.1rem;
      font-weight: 600;
      padding: 1.25rem;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
      margin-top: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .btn-submit:hover {
      background-color: #b8863b;
      transform: translateY(-2px);
    }

    /* --- FOOTER --- */
    .site-footer {
      background-color: #022536; 
      color: rgba(255, 255, 255, 0.5);
      text-align: center;
      padding: 2rem 5%;
      font-size: 0.9rem;
    }

    @keyframes fadeIn {
      0% { opacity: 0; transform: translateY(15px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
      .product-hero { flex-direction: column; padding-top: 8vh; gap: 3rem; }
      .hero-content { text-align: center; max-width: 100%; }
      .image-backdrop { right: 5%; top: 5%; }
      .contact-form-wrapper { padding: 2rem; }
      
      th, td { display: block; width: 100%; border-right: none; }
      th { border-bottom: 1px solid #eaeaea; }
      td { border-bottom: 4px solid var(--brand-bg-alt); }
    }

    @media (max-width: 768px) {
      .hero-title { font-size: 2.5rem; }
      .hero-desc, .desc-text { font-size: 1rem; }
      .desc-title { font-size: 1.75rem; }
      .nav-links { display: none; }
      .contact-container { flex-direction: column; gap: 3rem; }
      .section-title { font-size: 2.25rem; }
    }
  

/* ======================================================= */
/* Styles from: Sheets, Plates & Coils.html */
/* ======================================================= */

    

    

    

    /* --- HEADER --- */
    .site-header {
      width: 100%;
      padding: 30px 5%; 
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: var(--brand-bg);
      z-index: 100;
      border-bottom: 1px solid #eaeaea;
    }

    .logo {
      font-size: 1.25rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: var(--brand-dark);
      text-transform: uppercase;
      text-decoration: none;
    }

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

    .nav-links a {
      text-decoration: none;
      color: var(--brand-gray);
      font-size: 0.95rem;
      font-weight: 500;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: var(--brand-highlight);
    }

    .nav-btn {
      background-color: var(--brand-highlight);
      color: #fff !important;
      padding: 10px 24px;
      border-radius: 50px;
      transition: background-color 0.3s, transform 0.3s !important;
    }

    .nav-btn:hover {
      background-color: var(--brand-dark);
      transform: translateY(-2px);
    }

    /* --- PRODUCT HERO SECTION --- */
    .product-hero {
      background-color: var(--brand-bg-alt);
      padding: 12vh 5% 10vh;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 6%;
    }

    .hero-content {
      flex: 1;
      max-width: 600px;
    }

    .badge {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      padding: 8px 16px;
      border-radius: 50px;
      animation: fadeIn 0.8s ease-out forwards;
    }

    .badge-gold {
      color: var(--brand-gold);
      border: 1px solid var(--brand-tan);
      background-color: rgba(232, 203, 150, 0.1);
      margin-bottom: 1.5rem;
    }

    .hero-title {
      font-size: 3.5rem;
      font-weight: 500;
      line-height: 1.15;
      letter-spacing: -0.03em;
      color: #000000;
      margin-bottom: 1.5rem; 
      animation: fadeIn 0.8s ease-out 0.2s forwards;
      opacity: 0;
    }

    .hero-desc {
      font-size: 1.15rem;
      line-height: 1.6;
      color: var(--brand-gray);
      margin-bottom: 2.5rem; 
      font-weight: 300;
      animation: fadeIn 0.8s ease-out 0.4s forwards;
      opacity: 0;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 18px 44px; 
      font-size: 1.05rem;
      font-weight: 600;
      color: #ffffff;
      background-color: var(--brand-highlight);
      text-decoration: none;
      border-radius: 100px; 
      transition: all 0.3s ease;
      animation: fadeIn 0.8s ease-out 0.6s forwards;
      opacity: 0;
    }

    .btn:hover {
      background-color: var(--brand-dark);
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .hero-image-wrapper {
      flex: 1;
      position: relative;
      animation: fadeIn 1s ease-out 0.3s forwards;
      opacity: 0;
    }

    .hero-image-wrapper img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

    .image-backdrop {
      position: absolute;
      top: -5%;
      right: -5%;
      width: 100%;
      height: 100%;
      background-color: var(--brand-tan);
      opacity: 0.15;
      border-radius: 20px;
      z-index: -1;
    }

    /* --- DESCRIPTION SECTION --- */
    .description-section {
      padding: 8vh 5%;
      background-color: var(--brand-bg);
      text-align: center;
    }

    .desc-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .desc-title {
      font-size: 2rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin-bottom: 1.5rem;
      color: var(--brand-dark);
    }

    .desc-text {
      font-size: 1.15rem;
      line-height: 1.8;
      color: var(--brand-gray);
      font-weight: 300;
      margin-bottom: 1.5rem;
    }

    .desc-text strong {
      font-weight: 500;
      color: var(--brand-dark);
    }

    /* --- SPECS & FEATURES SECTION --- */
    .specs-section {
      padding: 8vh 5%;
      background-color: var(--brand-bg);
    }

    .section-header {
      text-align: center;
      margin-bottom: 6vh;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
    }

    .section-subtitle {
      font-size: 1.15rem;
      color: var(--brand-gray);
      font-weight: 300;
      max-width: 700px;
      margin: 0 auto;
    }

    .specs-container {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 3rem;
    }

    .specs-table-wrapper {
      background: var(--brand-bg);
      border: 1px solid #eaeaea;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    }

    table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
    }

    th, td {
      padding: 1.5rem;
      border-bottom: 1px solid #eaeaea;
    }

    th {
      background-color: var(--brand-bg-alt);
      font-weight: 600;
      color: var(--brand-dark);
      width: 25%;
      border-right: 1px solid #eaeaea;
    }

    td {
      color: var(--brand-gray);
      font-weight: 300;
      line-height: 1.6;
    }

    tr:last-child th, tr:last-child td {
      border-bottom: none;
    }

    .type-badge {
      display: inline-block;
      background: var(--brand-bg-alt);
      border: 1px solid #eaeaea;
      padding: 6px 12px;
      border-radius: 6px;
      font-size: 0.85rem;
      margin: 4px;
      color: var(--brand-dark);
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .feature-card {
      background: var(--brand-bg-alt);
      padding: 2.5rem;
      border-radius: 16px;
      border: 1px solid #eaeaea;
    }

    .feature-icon {
      font-size: 2rem;
      color: var(--brand-gold);
      margin-bottom: 1.5rem;
    }

    .feature-title {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--brand-dark);
      margin-bottom: 1rem;
    }

    .feature-desc {
      font-size: 1rem;
      line-height: 1.6;
      color: var(--brand-gray);
      font-weight: 300;
    }

    /* --- FAQ SECTION --- */
    .faq-section {
      padding: 10vh 5%;
      background-color: var(--brand-bg-alt);
    }

    .faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-item {
      border-bottom: 1px solid #eaeaea;
      padding: 1.5rem 0;
    }

    .faq-item summary {
      font-size: 1.15rem;
      font-weight: 500;
      color: var(--brand-dark);
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: color 0.3s ease;
    }

    .faq-item summary:hover {
      color: var(--brand-highlight);
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: '+';
      font-size: 1.5rem;
      color: var(--brand-gold);
      transition: transform 0.3s ease;
    }

    .faq-item[open] summary::after {
      content: '−';
    }

    .faq-item p {
      margin-top: 1rem;
      color: var(--brand-gray);
      line-height: 1.7;
      font-weight: 300;
    }

    /* --- CONTACT SECTION (LEAD GEN) --- */
    .contact-section {
      padding: 12vh 5%;
      background-color: var(--brand-highlight);
      color: #ffffff;
    }

    .contact-section .section-title {
      color: #ffffff;
    }

    .contact-section .section-subtitle {
      color: rgba(255, 255, 255, 0.7);
    }

    .contact-container {
      display: flex;
      flex-wrap: wrap;
      gap: 4rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .contact-info-wrapper {
      flex: 1;
      min-width: 300px;
    }

    .contact-detail {
      margin-bottom: 2.5rem;
    }

    .contact-detail h4 {
      color: var(--brand-gold);
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 0.5rem;
    }

    .contact-detail p, .contact-detail a {
      color: #ffffff;
      font-size: 1.15rem;
      line-height: 1.6;
      font-weight: 300;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .contact-detail a:hover {
      color: var(--brand-tan);
    }

    .contact-form-wrapper {
      flex: 1.2;
      min-width: 300px;
      background: rgba(255, 255, 255, 0.03);
      padding: 3rem;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .form-group input, 
    .form-group textarea {
      width: 100%;
      padding: 1.25rem;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      color: #ffffff;
      font-size: 1rem;
      font-family: 'Inter', sans-serif;
      outline: none;
      transition: all 0.3s ease;
    }

    .form-group input::placeholder, 
    .form-group textarea::placeholder {
      color: rgba(255, 255, 255, 0.4);
    }

    .form-group input:focus, 
    .form-group textarea:focus {
      background: rgba(255, 255, 255, 0.1);
      border-color: var(--brand-gold);
    }

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

    .btn-submit {
      background-color: var(--brand-gold);
      color: #ffffff;
      font-size: 1.1rem;
      font-weight: 600;
      padding: 1.25rem;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
      margin-top: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .btn-submit:hover {
      background-color: #b8863b;
      transform: translateY(-2px);
    }

    /* --- FOOTER --- */
    .site-footer {
      background-color: #022536; 
      color: rgba(255, 255, 255, 0.5);
      text-align: center;
      padding: 2rem 5%;
      font-size: 0.9rem;
    }

    @keyframes fadeIn {
      0% { opacity: 0; transform: translateY(15px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
      .product-hero { flex-direction: column; padding-top: 8vh; gap: 3rem; }
      .hero-content { text-align: center; max-width: 100%; }
      .image-backdrop { right: 5%; top: 5%; }
      .contact-form-wrapper { padding: 2rem; }
      
      th, td { display: block; width: 100%; border-right: none; }
      th { border-bottom: 1px solid #eaeaea; }
      td { border-bottom: 4px solid var(--brand-bg-alt); }
    }

    @media (max-width: 768px) {
      .hero-title { font-size: 2.5rem; }
      .hero-desc, .desc-text { font-size: 1rem; }
      .desc-title { font-size: 1.75rem; }
      .nav-links { display: none; }
      .contact-container { flex-direction: column; gap: 3rem; }
      .section-title { font-size: 2.25rem; }
    }
  

/* ======================================================= */
/* Styles from: Socket-Weld Fittings.html */
/* ======================================================= */

    

    

    

    /* --- HEADER --- */
    .site-header {
      width: 100%;
      padding: 30px 5%; 
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: var(--brand-bg);
      z-index: 100;
      border-bottom: 1px solid #eaeaea;
    }

    .logo {
      font-size: 1.25rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: var(--brand-dark);
      text-transform: uppercase;
      text-decoration: none;
    }

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

    .nav-links a {
      text-decoration: none;
      color: var(--brand-gray);
      font-size: 0.95rem;
      font-weight: 500;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: var(--brand-highlight);
    }

    .nav-btn {
      background-color: var(--brand-highlight);
      color: #fff !important;
      padding: 10px 24px;
      border-radius: 50px;
      transition: background-color 0.3s, transform 0.3s !important;
    }

    .nav-btn:hover {
      background-color: var(--brand-dark);
      transform: translateY(-2px);
    }

    /* --- PRODUCT HERO SECTION --- */
    .product-hero {
      background-color: var(--brand-bg-alt);
      padding: 12vh 5% 10vh;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 6%;
    }

    .hero-content {
      flex: 1;
      max-width: 600px;
    }

    .badge {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      padding: 8px 16px;
      border-radius: 50px;
      animation: fadeIn 0.8s ease-out forwards;
    }

    .badge-gold {
      color: var(--brand-gold);
      border: 1px solid var(--brand-tan);
      background-color: rgba(232, 203, 150, 0.1);
      margin-bottom: 1.5rem;
    }

    .hero-title {
      font-size: 3.5rem;
      font-weight: 500;
      line-height: 1.15;
      letter-spacing: -0.03em;
      color: #000000;
      margin-bottom: 1.5rem; 
      animation: fadeIn 0.8s ease-out 0.2s forwards;
      opacity: 0;
    }

    .hero-desc {
      font-size: 1.15rem;
      line-height: 1.6;
      color: var(--brand-gray);
      margin-bottom: 2.5rem; 
      font-weight: 300;
      animation: fadeIn 0.8s ease-out 0.4s forwards;
      opacity: 0;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 18px 44px; 
      font-size: 1.05rem;
      font-weight: 600;
      color: #ffffff;
      background-color: var(--brand-highlight);
      text-decoration: none;
      border-radius: 100px; 
      transition: all 0.3s ease;
      animation: fadeIn 0.8s ease-out 0.6s forwards;
      opacity: 0;
    }

    .btn:hover {
      background-color: var(--brand-dark);
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .hero-image-wrapper {
      flex: 1;
      position: relative;
      animation: fadeIn 1s ease-out 0.3s forwards;
      opacity: 0;
    }

    .hero-image-wrapper img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

    .image-backdrop {
      position: absolute;
      top: -5%;
      right: -5%;
      width: 100%;
      height: 100%;
      background-color: var(--brand-tan);
      opacity: 0.15;
      border-radius: 20px;
      z-index: -1;
    }

    /* --- DESCRIPTION SECTION --- */
    .description-section {
      padding: 8vh 5%;
      background-color: var(--brand-bg);
      text-align: center;
    }

    .desc-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .desc-title {
      font-size: 2rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin-bottom: 1.5rem;
      color: var(--brand-dark);
    }

    .desc-text {
      font-size: 1.15rem;
      line-height: 1.8;
      color: var(--brand-gray);
      font-weight: 300;
      margin-bottom: 1.5rem;
    }

    .desc-text strong {
      font-weight: 500;
      color: var(--brand-dark);
    }

    /* --- SPECS & FEATURES SECTION --- */
    .specs-section {
      padding: 8vh 5%;
      background-color: var(--brand-bg);
    }

    .section-header {
      text-align: center;
      margin-bottom: 6vh;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
    }

    .section-subtitle {
      font-size: 1.15rem;
      color: var(--brand-gray);
      font-weight: 300;
      max-width: 700px;
      margin: 0 auto;
    }

    .specs-container {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 3rem;
    }

    .specs-table-wrapper {
      background: var(--brand-bg);
      border: 1px solid #eaeaea;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    }

    table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
    }

    th, td {
      padding: 1.5rem;
      border-bottom: 1px solid #eaeaea;
    }

    th {
      background-color: var(--brand-bg-alt);
      font-weight: 600;
      color: var(--brand-dark);
      width: 25%;
      border-right: 1px solid #eaeaea;
    }

    td {
      color: var(--brand-gray);
      font-weight: 300;
      line-height: 1.6;
    }

    tr:last-child th, tr:last-child td {
      border-bottom: none;
    }

    .type-badge {
      display: inline-block;
      background: var(--brand-bg-alt);
      border: 1px solid #eaeaea;
      padding: 6px 12px;
      border-radius: 6px;
      font-size: 0.85rem;
      margin: 4px;
      color: var(--brand-dark);
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .feature-card {
      background: var(--brand-bg-alt);
      padding: 2.5rem;
      border-radius: 16px;
      border: 1px solid #eaeaea;
    }

    .feature-icon {
      font-size: 2rem;
      color: var(--brand-gold);
      margin-bottom: 1.5rem;
    }

    .feature-title {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--brand-dark);
      margin-bottom: 1rem;
    }

    .feature-desc {
      font-size: 1rem;
      line-height: 1.6;
      color: var(--brand-gray);
      font-weight: 300;
    }

    /* --- FAQ SECTION --- */
    .faq-section {
      padding: 10vh 5%;
      background-color: var(--brand-bg-alt);
    }

    .faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-item {
      border-bottom: 1px solid #eaeaea;
      padding: 1.5rem 0;
    }

    .faq-item summary {
      font-size: 1.15rem;
      font-weight: 500;
      color: var(--brand-dark);
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: color 0.3s ease;
    }

    .faq-item summary:hover {
      color: var(--brand-highlight);
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: '+';
      font-size: 1.5rem;
      color: var(--brand-gold);
      transition: transform 0.3s ease;
    }

    .faq-item[open] summary::after {
      content: '−';
    }

    .faq-item p {
      margin-top: 1rem;
      color: var(--brand-gray);
      line-height: 1.7;
      font-weight: 300;
    }

    /* --- CONTACT SECTION (LEAD GEN) --- */
    .contact-section {
      padding: 12vh 5%;
      background-color: var(--brand-highlight);
      color: #ffffff;
    }

    .contact-section .section-title {
      color: #ffffff;
    }

    .contact-section .section-subtitle {
      color: rgba(255, 255, 255, 0.7);
    }

    .contact-container {
      display: flex;
      flex-wrap: wrap;
      gap: 4rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .contact-info-wrapper {
      flex: 1;
      min-width: 300px;
    }

    .contact-detail {
      margin-bottom: 2.5rem;
    }

    .contact-detail h4 {
      color: var(--brand-gold);
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 0.5rem;
    }

    .contact-detail p, .contact-detail a {
      color: #ffffff;
      font-size: 1.15rem;
      line-height: 1.6;
      font-weight: 300;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .contact-detail a:hover {
      color: var(--brand-tan);
    }

    .contact-form-wrapper {
      flex: 1.2;
      min-width: 300px;
      background: rgba(255, 255, 255, 0.03);
      padding: 3rem;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .form-group input, 
    .form-group textarea {
      width: 100%;
      padding: 1.25rem;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      color: #ffffff;
      font-size: 1rem;
      font-family: 'Inter', sans-serif;
      outline: none;
      transition: all 0.3s ease;
    }

    .form-group input::placeholder, 
    .form-group textarea::placeholder {
      color: rgba(255, 255, 255, 0.4);
    }

    .form-group input:focus, 
    .form-group textarea:focus {
      background: rgba(255, 255, 255, 0.1);
      border-color: var(--brand-gold);
    }

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

    .btn-submit {
      background-color: var(--brand-gold);
      color: #ffffff;
      font-size: 1.1rem;
      font-weight: 600;
      padding: 1.25rem;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
      margin-top: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .btn-submit:hover {
      background-color: #b8863b;
      transform: translateY(-2px);
    }

    /* --- FOOTER --- */
    .site-footer {
      background-color: #022536; 
      color: rgba(255, 255, 255, 0.5);
      text-align: center;
      padding: 2rem 5%;
      font-size: 0.9rem;
    }

    @keyframes fadeIn {
      0% { opacity: 0; transform: translateY(15px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
      .product-hero { flex-direction: column; padding-top: 8vh; gap: 3rem; }
      .hero-content { text-align: center; max-width: 100%; }
      .image-backdrop { right: 5%; top: 5%; }
      .contact-form-wrapper { padding: 2rem; }
      
      th, td { display: block; width: 100%; border-right: none; }
      th { border-bottom: 1px solid #eaeaea; }
      td { border-bottom: 4px solid var(--brand-bg-alt); }
    }

    @media (max-width: 768px) {
      .hero-title { font-size: 2.5rem; }
      .hero-desc, .desc-text { font-size: 1rem; }
      .desc-title { font-size: 1.75rem; }
      .nav-links { display: none; }
      .contact-container { flex-direction: column; gap: 3rem; }
      .section-title { font-size: 2.25rem; }
    }
  

/* ======================================================= */
/* Styles from: fasteners.html */
/* ======================================================= */

    

    

    

    /* --- HEADER --- */
    .site-header {
      width: 100%;
      padding: 30px 5%; 
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: var(--brand-bg);
      z-index: 100;
      border-bottom: 1px solid #eaeaea;
    }

    .logo {
      font-size: 1.25rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: var(--brand-dark);
      text-transform: uppercase;
      text-decoration: none;
    }

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

    .nav-links a {
      text-decoration: none;
      color: var(--brand-gray);
      font-size: 0.95rem;
      font-weight: 500;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: var(--brand-highlight);
    }

    .nav-btn {
      background-color: var(--brand-highlight);
      color: #fff !important;
      padding: 10px 24px;
      border-radius: 50px;
      transition: background-color 0.3s, transform 0.3s !important;
    }

    .nav-btn:hover {
      background-color: var(--brand-dark);
      transform: translateY(-2px);
    }

    /* --- PRODUCT HERO SECTION --- */
    .product-hero {
      background-color: var(--brand-bg-alt);
      padding: 12vh 5% 10vh;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 6%;
    }

    .hero-content {
      flex: 1;
      max-width: 600px;
    }

    .badge {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      padding: 8px 16px;
      border-radius: 50px;
      animation: fadeIn 0.8s ease-out forwards;
    }

    .badge-gold {
      color: var(--brand-gold);
      border: 1px solid var(--brand-tan);
      background-color: rgba(232, 203, 150, 0.1);
      margin-bottom: 1.5rem;
    }

    .hero-title {
      font-size: 3.5rem;
      font-weight: 500;
      line-height: 1.15;
      letter-spacing: -0.03em;
      color: #000000;
      margin-bottom: 1.5rem; 
      animation: fadeIn 0.8s ease-out 0.2s forwards;
      opacity: 0;
    }

    .hero-desc {
      font-size: 1.15rem;
      line-height: 1.6;
      color: var(--brand-gray);
      margin-bottom: 2.5rem; 
      font-weight: 300;
      animation: fadeIn 0.8s ease-out 0.4s forwards;
      opacity: 0;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 18px 44px; 
      font-size: 1.05rem;
      font-weight: 600;
      color: #ffffff;
      background-color: var(--brand-highlight);
      text-decoration: none;
      border-radius: 100px; 
      transition: all 0.3s ease;
      animation: fadeIn 0.8s ease-out 0.6s forwards;
      opacity: 0;
    }

    .btn:hover {
      background-color: var(--brand-dark);
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .hero-image-wrapper {
      flex: 1;
      position: relative;
      animation: fadeIn 1s ease-out 0.3s forwards;
      opacity: 0;
    }

    .hero-image-wrapper img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

    .image-backdrop {
      position: absolute;
      top: -5%;
      right: -5%;
      width: 100%;
      height: 100%;
      background-color: var(--brand-tan);
      opacity: 0.15;
      border-radius: 20px;
      z-index: -1;
    }

    /* --- DESCRIPTION SECTION --- */
    .description-section {
      padding: 8vh 5%;
      background-color: var(--brand-bg);
      text-align: center;
    }

    .desc-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .desc-title {
      font-size: 2rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin-bottom: 1.5rem;
      color: var(--brand-dark);
    }

    .desc-text {
      font-size: 1.15rem;
      line-height: 1.8;
      color: var(--brand-gray);
      font-weight: 300;
      margin-bottom: 1.5rem;
    }

    .desc-text strong {
      font-weight: 500;
      color: var(--brand-dark);
    }

    /* --- SPECS & FEATURES SECTION --- */
    .specs-section {
      padding: 8vh 5%;
      background-color: var(--brand-bg);
    }

    .section-header {
      text-align: center;
      margin-bottom: 6vh;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
    }

    .section-subtitle {
      font-size: 1.15rem;
      color: var(--brand-gray);
      font-weight: 300;
      max-width: 700px;
      margin: 0 auto;
    }

    .specs-container {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 3rem;
    }

    .specs-table-wrapper {
      background: var(--brand-bg);
      border: 1px solid #eaeaea;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    }

    table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
    }

    th, td {
      padding: 1.5rem;
      border-bottom: 1px solid #eaeaea;
    }

    th {
      background-color: var(--brand-bg-alt);
      font-weight: 600;
      color: var(--brand-dark);
      width: 25%;
      border-right: 1px solid #eaeaea;
    }

    td {
      color: var(--brand-gray);
      font-weight: 300;
      line-height: 1.6;
    }

    tr:last-child th, tr:last-child td {
      border-bottom: none;
    }

    .type-badge {
      display: inline-block;
      background: var(--brand-bg-alt);
      border: 1px solid #eaeaea;
      padding: 6px 12px;
      border-radius: 6px;
      font-size: 0.85rem;
      margin: 4px;
      color: var(--brand-dark);
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .feature-card {
      background: var(--brand-bg-alt);
      padding: 2.5rem;
      border-radius: 16px;
      border: 1px solid #eaeaea;
    }

    .feature-icon {
      font-size: 2rem;
      color: var(--brand-gold);
      margin-bottom: 1.5rem;
    }

    .feature-title {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--brand-dark);
      margin-bottom: 1rem;
    }

    .feature-desc {
      font-size: 1rem;
      line-height: 1.6;
      color: var(--brand-gray);
      font-weight: 300;
    }

    /* --- FAQ SECTION --- */
    .faq-section {
      padding: 10vh 5%;
      background-color: var(--brand-bg-alt);
    }

    .faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-item {
      border-bottom: 1px solid #eaeaea;
      padding: 1.5rem 0;
    }

    .faq-item summary {
      font-size: 1.15rem;
      font-weight: 500;
      color: var(--brand-dark);
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: color 0.3s ease;
    }

    .faq-item summary:hover {
      color: var(--brand-highlight);
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: '+';
      font-size: 1.5rem;
      color: var(--brand-gold);
      transition: transform 0.3s ease;
    }

    .faq-item[open] summary::after {
      content: '−';
    }

    .faq-item p {
      margin-top: 1rem;
      color: var(--brand-gray);
      line-height: 1.7;
      font-weight: 300;
    }

    /* --- CONTACT SECTION (LEAD GEN) --- */
    .contact-section {
      padding: 12vh 5%;
      background-color: var(--brand-highlight);
      color: #ffffff;
    }

    .contact-section .section-title {
      color: #ffffff;
    }

    .contact-section .section-subtitle {
      color: rgba(255, 255, 255, 0.7);
    }

    .contact-container {
      display: flex;
      flex-wrap: wrap;
      gap: 4rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .contact-info-wrapper {
      flex: 1;
      min-width: 300px;
    }

    .contact-detail {
      margin-bottom: 2.5rem;
    }

    .contact-detail h4 {
      color: var(--brand-gold);
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 0.5rem;
    }

    .contact-detail p, .contact-detail a {
      color: #ffffff;
      font-size: 1.15rem;
      line-height: 1.6;
      font-weight: 300;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .contact-detail a:hover {
      color: var(--brand-tan);
    }

    .contact-form-wrapper {
      flex: 1.2;
      min-width: 300px;
      background: rgba(255, 255, 255, 0.03);
      padding: 3rem;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .form-group input, 
    .form-group textarea {
      width: 100%;
      padding: 1.25rem;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      color: #ffffff;
      font-size: 1rem;
      font-family: 'Inter', sans-serif;
      outline: none;
      transition: all 0.3s ease;
    }

    .form-group input::placeholder, 
    .form-group textarea::placeholder {
      color: rgba(255, 255, 255, 0.4);
    }

    .form-group input:focus, 
    .form-group textarea:focus {
      background: rgba(255, 255, 255, 0.1);
      border-color: var(--brand-gold);
    }

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

    .btn-submit {
      background-color: var(--brand-gold);
      color: #ffffff;
      font-size: 1.1rem;
      font-weight: 600;
      padding: 1.25rem;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
      margin-top: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .btn-submit:hover {
      background-color: #b8863b;
      transform: translateY(-2px);
    }

    /* --- FOOTER --- */
    .site-footer {
      background-color: #022536; 
      color: rgba(255, 255, 255, 0.5);
      text-align: center;
      padding: 2rem 5%;
      font-size: 0.9rem;
    }

    @keyframes fadeIn {
      0% { opacity: 0; transform: translateY(15px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
      .product-hero { flex-direction: column; padding-top: 8vh; gap: 3rem; }
      .hero-content { text-align: center; max-width: 100%; }
      .image-backdrop { right: 5%; top: 5%; }
      .contact-form-wrapper { padding: 2rem; }
      
      th, td { display: block; width: 100%; border-right: none; }
      th { border-bottom: 1px solid #eaeaea; }
      td { border-bottom: 4px solid var(--brand-bg-alt); }
    }

    @media (max-width: 768px) {
      .hero-title { font-size: 2.5rem; }
      .hero-desc, .desc-text { font-size: 1rem; }
      .desc-title { font-size: 1.75rem; }
      .nav-links { display: none; }
      .contact-container { flex-direction: column; gap: 3rem; }
      .section-title { font-size: 2.25rem; }
    }
  

/* ======================================================= */
/* Styles from: valves.html */
/* ======================================================= */

    

    

    

    /* --- HEADER --- */
    .site-header {
      width: 100%;
      padding: 30px 5%; 
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: var(--brand-bg);
      z-index: 100;
      border-bottom: 1px solid #eaeaea;
    }

    .logo {
      font-size: 1.25rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: var(--brand-dark);
      text-transform: uppercase;
      text-decoration: none;
    }

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

    .nav-links a {
      text-decoration: none;
      color: var(--brand-gray);
      font-size: 0.95rem;
      font-weight: 500;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: var(--brand-highlight);
    }

    .nav-btn {
      background-color: var(--brand-highlight);
      color: #fff !important;
      padding: 10px 24px;
      border-radius: 50px;
      transition: background-color 0.3s, transform 0.3s !important;
    }

    .nav-btn:hover {
      background-color: var(--brand-dark);
      transform: translateY(-2px);
    }

    /* --- PRODUCT HERO SECTION --- */
    .product-hero {
      background-color: var(--brand-bg-alt);
      padding: 12vh 5% 10vh;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 6%;
    }

    .hero-content {
      flex: 1;
      max-width: 600px;
    }

    .badge {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      padding: 8px 16px;
      border-radius: 50px;
      animation: fadeIn 0.8s ease-out forwards;
    }

    .badge-gold {
      color: var(--brand-gold);
      border: 1px solid var(--brand-tan);
      background-color: rgba(232, 203, 150, 0.1);
      margin-bottom: 1.5rem;
    }

    .hero-title {
      font-size: 3.5rem;
      font-weight: 500;
      line-height: 1.15;
      letter-spacing: -0.03em;
      color: #000000;
      margin-bottom: 1.5rem; 
      animation: fadeIn 0.8s ease-out 0.2s forwards;
      opacity: 0;
    }

    .hero-desc {
      font-size: 1.15rem;
      line-height: 1.6;
      color: var(--brand-gray);
      margin-bottom: 2.5rem; 
      font-weight: 300;
      animation: fadeIn 0.8s ease-out 0.4s forwards;
      opacity: 0;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 18px 44px; 
      font-size: 1.05rem;
      font-weight: 600;
      color: #ffffff;
      background-color: var(--brand-highlight);
      text-decoration: none;
      border-radius: 100px; 
      transition: all 0.3s ease;
      animation: fadeIn 0.8s ease-out 0.6s forwards;
      opacity: 0;
    }

    .btn:hover {
      background-color: var(--brand-dark);
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .hero-image-wrapper {
      flex: 1;
      position: relative;
      animation: fadeIn 1s ease-out 0.3s forwards;
      opacity: 0;
    }

    .hero-image-wrapper img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

    .image-backdrop {
      position: absolute;
      top: -5%;
      right: -5%;
      width: 100%;
      height: 100%;
      background-color: var(--brand-tan);
      opacity: 0.15;
      border-radius: 20px;
      z-index: -1;
    }

    /* --- DESCRIPTION SECTION --- */
    .description-section {
      padding: 8vh 5%;
      background-color: var(--brand-bg);
      text-align: center;
    }

    .desc-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .desc-title {
      font-size: 2rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin-bottom: 1.5rem;
      color: var(--brand-dark);
    }

    .desc-text {
      font-size: 1.15rem;
      line-height: 1.8;
      color: var(--brand-gray);
      font-weight: 300;
      margin-bottom: 1.5rem;
    }

    .desc-text strong {
      font-weight: 500;
      color: var(--brand-dark);
    }

    /* --- SPECS & FEATURES SECTION --- */
    .specs-section {
      padding: 8vh 5%;
      background-color: var(--brand-bg);
    }

    .section-header {
      text-align: center;
      margin-bottom: 6vh;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
    }

    .section-subtitle {
      font-size: 1.15rem;
      color: var(--brand-gray);
      font-weight: 300;
      max-width: 700px;
      margin: 0 auto;
    }

    .specs-container {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 3rem;
    }

    .specs-table-wrapper {
      background: var(--brand-bg);
      border: 1px solid #eaeaea;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    }

    table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
    }

    th, td {
      padding: 1.5rem;
      border-bottom: 1px solid #eaeaea;
    }

    th {
      background-color: var(--brand-bg-alt);
      font-weight: 600;
      color: var(--brand-dark);
      width: 25%;
      border-right: 1px solid #eaeaea;
    }

    td {
      color: var(--brand-gray);
      font-weight: 300;
      line-height: 1.6;
    }

    tr:last-child th, tr:last-child td {
      border-bottom: none;
    }

    .type-badge {
      display: inline-block;
      background: var(--brand-bg-alt);
      border: 1px solid #eaeaea;
      padding: 6px 12px;
      border-radius: 6px;
      font-size: 0.85rem;
      margin: 4px;
      color: var(--brand-dark);
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .feature-card {
      background: var(--brand-bg-alt);
      padding: 2.5rem;
      border-radius: 16px;
      border: 1px solid #eaeaea;
    }

    .feature-icon {
      font-size: 2rem;
      color: var(--brand-gold);
      margin-bottom: 1.5rem;
    }

    .feature-title {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--brand-dark);
      margin-bottom: 1rem;
    }

    .feature-desc {
      font-size: 1rem;
      line-height: 1.6;
      color: var(--brand-gray);
      font-weight: 300;
    }

    /* --- FAQ SECTION --- */
    .faq-section {
      padding: 10vh 5%;
      background-color: var(--brand-bg-alt);
    }

    .faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-item {
      border-bottom: 1px solid #eaeaea;
      padding: 1.5rem 0;
    }

    .faq-item summary {
      font-size: 1.15rem;
      font-weight: 500;
      color: var(--brand-dark);
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: color 0.3s ease;
    }

    .faq-item summary:hover {
      color: var(--brand-highlight);
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: '+';
      font-size: 1.5rem;
      color: var(--brand-gold);
      transition: transform 0.3s ease;
    }

    .faq-item[open] summary::after {
      content: '−';
    }

    .faq-item p {
      margin-top: 1rem;
      color: var(--brand-gray);
      line-height: 1.7;
      font-weight: 300;
    }

    /* --- CONTACT SECTION (LEAD GEN) --- */
    .contact-section {
      padding: 12vh 5%;
      background-color: var(--brand-highlight);
      color: #ffffff;
    }

    .contact-section .section-title {
      color: #ffffff;
    }

    .contact-section .section-subtitle {
      color: rgba(255, 255, 255, 0.7);
    }

    .contact-container {
      display: flex;
      flex-wrap: wrap;
      gap: 4rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .contact-info-wrapper {
      flex: 1;
      min-width: 300px;
    }

    .contact-detail {
      margin-bottom: 2.5rem;
    }

    .contact-detail h4 {
      color: var(--brand-gold);
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 0.5rem;
    }

    .contact-detail p, .contact-detail a {
      color: #ffffff;
      font-size: 1.15rem;
      line-height: 1.6;
      font-weight: 300;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .contact-detail a:hover {
      color: var(--brand-tan);
    }

    .contact-form-wrapper {
      flex: 1.2;
      min-width: 300px;
      background: rgba(255, 255, 255, 0.03);
      padding: 3rem;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .form-group input, 
    .form-group textarea {
      width: 100%;
      padding: 1.25rem;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      color: #ffffff;
      font-size: 1rem;
      font-family: 'Inter', sans-serif;
      outline: none;
      transition: all 0.3s ease;
    }

    .form-group input::placeholder, 
    .form-group textarea::placeholder {
      color: rgba(255, 255, 255, 0.4);
    }

    .form-group input:focus, 
    .form-group textarea:focus {
      background: rgba(255, 255, 255, 0.1);
      border-color: var(--brand-gold);
    }

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

    .btn-submit {
      background-color: var(--brand-gold);
      color: #ffffff;
      font-size: 1.1rem;
      font-weight: 600;
      padding: 1.25rem;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
      margin-top: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .btn-submit:hover {
      background-color: #b8863b;
      transform: translateY(-2px);
    }

    /* --- FOOTER --- */
    .site-footer {
      background-color: #022536; 
      color: rgba(255, 255, 255, 0.5);
      text-align: center;
      padding: 2rem 5%;
      font-size: 0.9rem;
    }

    @keyframes fadeIn {
      0% { opacity: 0; transform: translateY(15px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
      .product-hero { flex-direction: column; padding-top: 8vh; gap: 3rem; }
      .hero-content { text-align: center; max-width: 100%; }
      .image-backdrop { right: 5%; top: 5%; }
      .contact-form-wrapper { padding: 2rem; }
      
      th, td { display: block; width: 100%; border-right: none; }
      th { border-bottom: 1px solid #eaeaea; }
      td { border-bottom: 4px solid var(--brand-bg-alt); }
    }

    /* ======================================================= */
    /* MOBILE NAVIGATION & DROPDOWN ACCORDION OVERRIDES        */
    /* ======================================================= */

    .mobile-menu-toggle {
      display: none;
      background: none;
      border: none;
      color: var(--brand-dark, #111111);
      cursor: pointer;
      padding: 8px;
      border-radius: 8px;
      z-index: 1001;
      transition: background-color 0.2s ease;
    }

    .mobile-menu-toggle:hover,
    .mobile-menu-toggle:focus {
      background-color: rgba(0, 0, 0, 0.05);
    }

    @media (max-width: 992px) {
      .site-header {
        position: relative;
        padding: 20px 5%;
      }

      .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .nav-links {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        padding: 20px 5% 30px;
        gap: 16px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        z-index: 999;
      }

      .site-header.nav-active .nav-links,
      .nav-links.active {
        display: flex !important;
      }

      .nav-links a {
        font-size: 1.05rem;
        padding: 8px 0;
        width: 100%;
      }

      .nav-links .nav-btn {
        display: inline-block;
        text-align: center;
        margin-top: 8px;
        width: 100%;
      }

      /* Mobile Dropdown Styling */
      .nav-dropdown {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
      }

      .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        font-size: 1.05rem;
        padding: 8px 0;
      }

      .dropdown-menu {
        position: static !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        box-shadow: none !important;
        border: 1px solid #eef2f6 !important;
        border-radius: 12px !important;
        padding: 16px 12px !important;
        margin-top: 8px;
        background-color: #f8fafc !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none !important;
        pointer-events: auto !important;
      }

      .nav-dropdown.open .dropdown-menu {
        display: block !important;
      }

      .dropdown-grid {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
        max-height: 380px;
        overflow-y: auto;
        padding-right: 4px;
      }

      .dropdown-item {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        background-color: #ffffff;
        border: 1px solid #e2e8f0;
        padding: 10px 14px !important;
        border-radius: 12px !important;
      }

      .item-icon {
        width: 40px !important;
        height: 40px !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
        border-radius: 10px !important;
        background-color: #f1f5f9 !important;
      }

      .dropdown-item:hover .item-icon,
      .dropdown-item:active .item-icon {
        background-color: var(--brand-dark, #111111) !important;
        color: #ffffff !important;
      }

      .item-icon svg {
        display: block !important;
        width: 20px !important;
        height: 20px !important;
        margin: auto !important;
      }

      .dropdown-header-title {
        margin-bottom: 12px;
        font-size: 0.7rem;
      }

      .dropdown-footer {
        margin-top: 12px;
        padding-top: 10px;
      }
    }

    @media (max-width: 480px) {
      .hero-title { font-size: 2.25rem !important; }
      .hero-desc, .desc-text { font-size: 0.95rem !important; }
      .dropdown-grid { max-height: 320px; }
    }
