/* ===============================
   BASE RESET + VARIABLES
================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #0b2a6b;
    /* industrial dark blue */
    --secondary: #d4af37;
    /* muted gold (trust accent) */
    --dark: #0f172a;
    --text: #1f2937;
    --muted: #6b7280;
    --white: #ffffff;

    --max-width: 1200px;
    --header-height: 72px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: #ffffff;
    line-height: 1.6;
    padding-top: var(--header-height);
}

.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.site-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f2a55; /* keep your existing brand color */
}
@media (max-width: 768px) {
  .site-logo {
    height: 32px;
  }
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.4rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--secondary);
    color: #111;
}

.btn-primary:hover {
    background: #c3a12f;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
}

/* ===============================
   HEADER
================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 1000;
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.primary-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1.6rem;
}

.nav-list a {
    font-weight: 500;
    color: #111;
}

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

.nav-toggle,
.nav-close,
.nav-backdrop,
.nav-cta-mobile {
    display: none;
}

/* ===============================
   HERO
================================ */

.hero {
    position: relative;
    height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 35, 0.68);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: bolder;
    color: #e5e7eb;
    margin-bottom: 0.4rem;
     max-width: 620px;
}

.hero-location {
    font-size: 0.95rem;
    color: #d1d5db;
    margin-bottom: 1.8rem;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.hero-trust {
    display: flex;
    gap: 1.2rem;
    font-size: 0.85rem;
    color: #e5e7eb;
}

@media (max-width: 768px) {
    .hero {
        height: 85vh;
    }
}

/* ===============================
   BRANDS SECTION
================================ */

.brands-section {
    padding: 3rem 0;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.6rem;
}

.section-subtitle {
    text-align: center;
    color: var(--muted);
    font-size: 0.95rem;
    max-width: 720px;
    margin: 0 auto 2.6rem;
}

.brands-grid {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 2rem;
    align-items: center;
}
.brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  color: #475569;
  margin: 1.25rem auto 2.5rem;
}
.brand-card img{
    object-fit: contain;
    max-height: 90px;             /* THIS is the real fix */
    max-width: 100%; 

}

.brand-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.brands-secondary {
    margin-top: 3.5rem;
}

.secondary-grid {
    opacity: 0.85;
}

.brand-card.placeholder {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--muted);
    background: repeating-linear-gradient(45deg,
            #f1f5f9,
            #f1f5f9 10px,
            #e5e7eb 10px,
            #e5e7eb 20px);
}

.brands-section .section-title {
  text-align: center;
  margin-bottom: 0.5rem;
}

.brands-section .section-subtitle {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
  color: var(--muted);
}

/* Primary brands more prominent */
.primary-brands .brand-card img {
  filter: none;
  opacity: 1;
  max-height: 70px;
}

/* Secondary brands subtitle */
.brands-subtitle {
  margin: 3rem 0 1.5rem;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--muted);
}

/* Secondary brands slightly muted */
.secondary-brands .brand-card img {
  max-height: 55px;
  opacity: 0.8;
}

/* ===============================
   PRODUCT CATEGORIES
================================ */

.categories-section {
    padding: 4.5rem 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.category-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 1.8rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.category-card p {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 1.2rem;
}

.category-cta {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

.category-cta:hover {
    text-decoration: underline;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.product-filters {
    border-bottom: 1px solid #e5e7eb;
}
/* =========================
   PRODUCTS GRID
   ========================= */
.products-section {
  padding: 60px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.product-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  transition: box-shadow 0.2s ease;
}

.product-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.product-image {
  width: 100%;
  height: 160px;
  background: #f9fafb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* 🔥 THIS FIXES ALL IMAGE SIZE ISSUES */
}

.product-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.product-meta {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 10px;
}

.product-cta {
  font-size: 15px;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
}

.product-cta:hover {
  text-decoration: underline;
}


/* =========================
   CTA LINK
   ========================= */

.product-link {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #1d4ed8;
  text-decoration: none;
}

.product-link:hover {
  text-decoration: underline;
}

/* =========================
   MOBILE REFINEMENTS
   ========================= */

@media (max-width: 768px) {
  .products-section {
    padding: 40px 0;
  }

  .product-image {
    height: 160px;
  }
}


.filter-tabs {
    display: flex;
    gap: 1.2rem;
    overflow-x: auto;
    padding: 1rem 0;
}

.filter {
    font-weight: 600;
    color: var(--muted);
}

.filter.active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

/* ===============================
   GATED PRICE LIST
================================ */

.price-list-section {
    padding: 4.5rem 0;
}

.price-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.price-card {
    background: #ffffff;
    border: 1px dashed rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 1.8rem;
    text-align: center;
}

.price-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.price-cta {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

.price-cta:hover {
    text-decoration: underline;
}

/* ===============================
   CONTACT SECTION
================================ */

.contact-section {
    padding: 4.5rem 0;
    background: #0f172a;
    color: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
}

.contact-text {
    color: #d1d5db;
    margin-bottom: 1.6rem;
}

.contact-details p {
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
}

.contact-details a {
    color: #ffffff;
    font-weight: 600;
}

.contact-cta {
    margin-top: 1.8rem;
}

.contact-map iframe {
    border-radius: 12px;
}
.brands-instruction {
  text-align: center;
  font-style: italic;
  width: 100%;
  text-align: center;
  font-weight: 500;
  margin: 1.25rem auto 2.5rem;
  align-items: center;
}
@media (max-width: 768px) {
  .brands-instruction {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
     max-width: 120px;   /* was probably ~80–90 */
    max-height: 80px;
  }
}


@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    /* =========================
   MOBILE BRAND LOGO FIX
   ========================= */

  .brands-grid {
    grid-template-columns: repeat(2, 1fr); /* fewer columns */
    gap: 20px;
  }

  .brand-card {
    padding: 16px;
    height: 110px;
  }

  .brand-card img {
    max-width: 145px;   /* increase logo size */
    max-height: 95px;
  }
}

.nav-list a.active {
    color: var(--primary);
    font-weight: 700;
}

/* ===============================
   TRUST & ASSURANCE
================================ */

.assurance-section {
    background: #ffffff;
}

.assurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.assurance-item {
    text-align: center;
    padding: 1.8rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
}

.assurance-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.8rem;
}

.assurance-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.4rem;
}

.assurance-item p {
    font-size: 0.85rem;
    color: var(--muted);
}
.hero-overlay {
  background: rgba(5, 15, 30, 0.78); /* stronger overlay */
}
.hero h1 {
  letter-spacing: -0.02em;
}

.brochure-gallery {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.brochure-gallery img {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .brochure-gallery img {
    border-radius: 6px;
  }
}


@media (min-width: 1400px) {
  .hero-content {
    max-width: 860px;
  }
}

@media (max-height: 700px) {
  .hero {
    height: auto;
    padding: 4rem 0;
  }
}
section {
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.btn {
  border-radius: 6px; /* instead of 10–12px */
}

.category-card,
.product-card,
.brand-card {
  border-radius: 8px;
}
p {
  line-height: 1.5;
}
.seo-content {
  padding: 4rem 0;
  background: #f8fafc;
}

.seo-content h2 {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.seo-content p {
  color: var(--muted);
  max-width: 900px;
  margin-bottom: 0.8rem;
}
.business-stats {
  padding: 3rem 0;
  background: #ffffff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat strong {
  font-size: 1.6rem;
  color: var(--primary);
  display: block;
}

.stat span {
  font-size: 0.85rem;
  color: var(--muted);
}
.products-section,
.brands-section {
  background: #f9fafb;
}.site-footer {
  background: #020617;
  color: #e5e7eb;
  padding: 48px 20px 16px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.site-footer h4 {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.site-footer p,
.site-footer li,
.site-footer a {
  font-size: 14px;
  line-height: 1.6;
  color: #cbd5f5;
}

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

.site-footer li {
  margin-bottom: 6px;
}

.site-footer a {
  text-decoration: none;
  display: inline-block;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 13px;
  color: #9ca3af;
  opacity: 0.6;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
}

.mobile-only {
  display: none;
}

/* Mobile */
@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    display: none;
    border-bottom: 1px solid #e5e7eb;
  }

  .nav-list.active {
    display: flex;
  }

  .nav-cta-desktop {
    display: none;
  }

  .mobile-only {
    display: block;
    margin-top: 0.5rem;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 4rem 1.2rem 3rem;
    text-align: left;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.15;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-top: 0.8rem;
    max-width: 100%;
  }
}
.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 1.8rem;
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  color: #ffffff;
}

@media (max-width: 768px) {
  .hero-cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .hero-features {
    display: none;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 4rem 1.2rem 3rem;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.15;
  }

}
@media (max-width: 768px) {
   
  .hero-bg {
    display: none;
  }

  .hero {
    background: #020617; /* deep industrial navy */
  }


  .header-inner {
    align-items: center;
  }
  .hero {
    padding: 3.5rem 1.25rem 3rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 1.9rem;
    line-height: 1.15;
    margin-bottom: 0.6rem;
  }
   .hero-cta a.btn-secondary {
    display: none;
  }
   .hero-features {
    display: none !important;
  }
   .hero-cta .btn {
    padding: 0.9rem 1.2rem;
    font-size: 0.95rem;
    border-radius: 6px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding-top: 2.8rem; /* was too much */
  }
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.05rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
  }
}
.hero-divider {
  width: 40px;
  height: 2px;
  background: rgba(255,255,255,0.25);
  margin: 1.2rem 0;
}

@media (max-width: 768px) {
  .hero-divider {
    margin: 1rem 0;
  }
}
@media (max-width: 768px) {

  .hero-bg {
    display: block;
    position: absolute;
    inset: 0;
    overflow: hidden;
  }

  .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: blur(2px) brightness(0.45) saturate(0.6);
    transform: scale(1.1);
  }

  .hero-overlay {
    background: rgba(2, 6, 23, 0.75);
  }
}
@media (max-width: 768px) {
  .btn-secondary {
    display: none;
  }
}
@media (max-width: 768px) {
  .hero-cta a.btn-outline {
    display: none;
  }
}
@media (max-width: 768px) {
  .hero-trust {
    display: none;
  }
}
/* Mobile footer polish */
@media (max-width: 640px) {
  .site-footer {
    padding: 40px 20px 20px;
  }

  .footer-grid {
    gap: 28px;
  }

  .site-footer h4 {
    margin-top: 8px;
    margin-bottom: 10px;
    font-size: 15px;
  }

  .site-footer p {
    margin-bottom: 12px;
  }

  .site-footer ul li {
    margin-bottom: 8px;
  }

  .footer-bottom {
    margin-top: 40px;
    padding-top: 16px;
    font-size: 12px;
  }
}


