body {
margin:0;
font-family:'Inter', sans-serif;
background:#f5f6f8;
color:#333;
}

/* HEADER */
header {
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 8%;
background:white;
box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.logo img {
height:50px;
}

nav ul {
display:flex;
list-style:none;
gap:30px;
}

nav a {
text-decoration:none;
color:#333;
font-weight:500;
}

.btn-primary {
background:#d92b2b;
color:white;
padding:12px 20px;
border-radius:5px;
text-decoration:none;
}

/* DROPDOWN NAVIGATION */
nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
  margin: 0;
  padding: 0;
}

nav ul li {
  position: relative;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: white;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  border-radius: 8px;
  padding: 10px 0;
  z-index: 999;
}

.dropdown-menu li {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 12px 18px;
  color: #333;
  font-size: 15px;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: #f5f6f8;
  color: #d92b2b;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* HERO */
.hero {
  position: relative;
  height: 660px;
  display: flex;
  align-items: center;
  padding: 0 10%;
  color: white;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right 35% top 100%;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.28);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
}

.hero h1 {
  font-size: 48px;
  font-family: 'Montserrat', sans-serif;
}

.search-bar {
margin-top:20px;
display:flex;
}

.search-bar input {
padding:14px;
width:300px;
border:none;
border-radius:5px 0 0 5px;
}

.search-bar button {
background:#d92b2b;
color:white;
border:none;
padding:14px 20px;
border-radius:0 5px 5px 0;
}

.hero-tags {
margin-top:15px;
display:flex;
gap:15px;
}

/* PRODUCTS */
.products {
padding:60px 10%;
text-align:center;
}

.product-grid {
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin-top:40px;
}

.card {
background:white;
padding:20px;
border-radius:10px;
box-shadow:0 4px 15px rgba(0,0,0,0.1);
}

.card img {
width:100%;
border-radius:8px;
}

.card button {
margin-top:10px;
background:#d92b2b;
color:white;
border:none;
padding:10px 15px;
border-radius:5px;
}

/* CTA */
.cta {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 10%;
  color: white;
  overflow: hidden;
}

.cta-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  z-index: 1;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 2;
}

.cta-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
}

.cta-content h2 {
  font-size: 42px;
  margin-bottom: 12px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 18px;
}

/* FOOTER */
footer {
background:#1f1f1f;
color:white;
padding:50px 10%;
}

.footer-container {
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:30px;
}

.footer-logo {
height:40px;
margin-bottom:10px;
}

footer a {
color:#ccc;
display:block;
margin:5px 0;
text-decoration:none;
}

footer a:hover {
color:white;
}

copyright {
text-align:center;
margin-top:20px;
}

@media (min-width: 1200px) {
  .hero {
    height: 680px;
    background-position: right 35% center;
  }

  .cta {
    min-height: 460px;
    background-position: center 55%;
  }
}

/* MOBILE / TABLET RESPONSIVE */
@media (max-width: 1024px) {
  header {
    padding: 14px 5%;
    gap: 16px;
    flex-wrap: wrap;
  }

  nav ul {
    gap: 18px;
    padding-left: 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    height: auto;
    min-height: 520px;
    padding: 70px 6% 70px;
    background-position: center center;
  }

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

  .hero h1 {
    font-size: 40px;
    line-height: 1.15;
  }

  .hero p {
    font-size: 18px;
    line-height: 1.5;
  }

  .search-bar input {
    width: 100%;
  }

  .products,
  .cta,
  footer {
    padding-left: 6%;
    padding-right: 6%;
  }
}

@media (max-width: 768px) {
  .hero {
    background-image: url('images/hero-mobile.jpg');
    background-position: center center;
  }

  .about-hero {
    background-image: none !important;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('images/hero-mobile.jpg') !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;

    min-height: 260px;
    padding: 60px 5%;
  }

  header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  header .btn-primary {
    width: auto;
    max-width: 90%;
    margin: 10px auto 0;
    display: inline-block;
  }

  .logo img {
    height: 42px;
  }

  nav {
    width: 100%;
  }

  nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin: 10px 0;
  }

  nav a {
    font-size: 15px;
  }

  .dropdown-menu {
    position: static;
    display: block;
    box-shadow: none;
    background: transparent;
    padding: 6px 0 0;
    min-width: auto;
  }

  .dropdown-menu a {
    padding: 8px 0;
    font-size: 14px;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
  }

  .btn-primary {
    padding: 11px 16px;
    font-size: 14px;
  }

  .btn-primary {
    width: calc(100% - 30px);
    margin: 0 auto;
    display: block;
  }

  .hero {
    min-height: 480px;
    padding: 60px 5%;
  }

  .hero-bg-img {
    content: url('images/hero-mobile.jpg');
    object-fit: cover;
    object-position: center center;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.15;
    margin-bottom: 14px;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .search-bar {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .search-bar input,
  .search-bar button {
    width: 100%;
    border-radius: 6px;
  }

  .search-bar input,
  .search-bar button {
    width: calc(100% - 30px);
    margin: 0 auto;
  }

  .search-bar input {
    padding: 14px;
    border-radius: 8px;
  }

  .search-bar button {
    border-radius: 8px;
    margin-top: 8px;
  }

  .hero-tags {
    flex-direction: column;
    gap: 8px;
    font-size: 15px;
  }

  .products h2,
  .cta h2 {
    font-size: 30px;
    line-height: 1.2;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card {
    padding: 18px;
  }

  .card h3 {
    font-size: 28px;
  }

  .card p {
    font-size: 15px;
    line-height: 1.5;
  }

  .cta {
    min-height: 500px;
    padding: 70px 5%;
  }

  .cta-bg-img {
    content: url('images/cta-mobile.jpg');
    object-fit: cover;
    object-position: center center;
  }

  .cta p {
    font-size: 16px;
    line-height: 1.5;
  }

  .cta .btn-primary {
    width: auto;
    max-width: 90%;
    margin: 20px auto 0;
    display: inline-block;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }

  footer a {
    margin: 8px 0;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 430px;
    padding: 48px 5% 48px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 15px;
  }

  .products h2,
  .cta h2 {
    font-size: 24px;
  }

  .card h3 {
    font-size: 24px;
  }

  .btn-primary,
  .card button,
  .search-bar button {
    width: 100%;
    text-align: center;
  }
}

/* ABOUT PAGE */
.page-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.about-hero {
  background-image: linear-gradient(rgba(0,0,0,0.42), rgba(0,0,0,0.42)), url('images/hero.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 80px 10%;
}

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

.page-hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  margin-bottom: 12px;
}

.page-hero-content p {
  font-size: 18px;
  line-height: 1.6;
}

.content-section {
  padding: 90px 10%;
}

.light-bg {
  background: #f5f6f8;
}

.content-container {
  max-width: 1200px;
  margin: 0 auto;
}

.content-container.narrow {
  max-width: 900px;
}

.center {
  text-align: center;
}

.content-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 38px;
  margin-bottom: 24px;
  color: #222;
}

.content-section h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  margin-bottom: 18px;
  color: #222;
}

.content-section p {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
}

.about-list {
  margin-top: 24px;
  padding-left: 22px;
}

.about-list li {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 10px;
  color: #444;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.info-card {
  background: white;
  padding: 34px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.value-card {
  background: white;
  padding: 28px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.value-card {
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.value-card h3 {
  font-size: 22px;
}

.value-card p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 0;
}

.about-cta .cta-content h2 {
  font-size: 40px;
}

/* ABOUT RESPONSIVE */
@media (max-width: 992px) {
  .two-col {
    grid-template-columns: 1fr;
  }

  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-hero-content h1 {
    font-size: 34px;
  }

  .page-hero-content p,
  .content-section p,
  .about-list li {
    font-size: 16px;
  }

  .content-section {
    padding: 60px 5%;
  }

  .content-section h2 {
    font-size: 30px;
  }

  .content-section h3 {
    font-size: 22px;
  }

  .info-card,
  .value-card {
    padding: 24px 20px;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }
}

/* PPE PAGE */
.ppe-hero {
  position: relative;
  background-image: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('images/ppe-hero.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 78% 18%;
  min-height: 65vh;
  display: flex;
  align-items: center;
}

.ppe-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10%;
  width: 100%;
}

.ppe-hero-content {
  max-width: 600px;
  color: white;
  padding-top: 20px;
}

.ppe-hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 58px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.ppe-hero-content p {
  font-size: 22px;
  line-height: 1.6;
  max-width: 560px;
}

.ppe-hero-image {
  display: flex;
  justify-content: flex-end;
  align-items: end;
}

.ppe-hero-image img {
  max-width: 100%;
  width: 470px;
  display: block;
}

.breadcrumb-section {
  padding: 22px 10% 0;
}

.breadcrumb {
  font-size: 15px;
  color: #666;
}

.ppe-intro {
  padding-top: 30px;
}

.product-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-category-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.product-category-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.product-category-card-content {
  padding: 24px;
}

.product-category-card-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  line-height: 1.15;
  margin-bottom: 14px;
  color: #222;
}

.product-category-card-content p {
  font-size: 17px;
  line-height: 1.75;
  color: #444;
  margin-bottom: 0;
}

.ppe-cta .cta-content h2 {
  font-size: 42px;
}

.ppe-cta .cta-content p {
  font-size: 20px;
}

/* PPE PAGE RESPONSIVE */
@media (max-width: 1100px) {
  .ppe-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 60px;
    padding-bottom: 0;
  }

  .ppe-hero-content p {
    margin: 0 auto;
  }

  .ppe-hero-image {
    justify-content: center;
  }

  .product-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ppe-hero {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                      url('images/hero-mobile.jpg');
    min-height: 280px;
    padding: 60px 5%;
  }

  .ppe-hero-inner {
    min-height: auto;
    padding: 60px 5% 30px;
    gap: 20px;
  }

  .ppe-hero-content h1 {
    font-size: 38px;
  }

  .ppe-hero-content p {
    font-size: 18px;
  }

  .ppe-hero-image img {
    width: 320px;
  }

  .breadcrumb-section {
    padding: 20px 5% 0;
  }

  .product-category-grid {
    grid-template-columns: 1fr;
  }

  .product-category-card img {
    height: 220px;
  }

  .product-category-card-content h3 {
    font-size: 24px;
  }

  .product-category-card-content p {
    font-size: 16px;
  }
}

/* INDUSTRIAL PAGE */
.industrial-hero {
  position: relative;
  background-image: linear-gradient(rgba(0,0,0,0.46), rgba(0,0,0,0.46)), url('images/industrial-hero.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 75% 40%;
  min-height: 65vh;
  display: flex;
  align-items: center;
}

.industrial-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10%;
  width: 100%;
}

.industrial-hero-content {
  max-width: 650px;
  color: white;
}

.industrial-hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 60px;
  line-height: 1.08;
  margin-bottom: 16px;
}

.industrial-hero-content p {
  font-size: 22px;
  line-height: 1.6;
}

.industrial-intro {
  padding-top: 36px;
}

.industrial-value-grid {
  grid-template-columns: repeat(4, 1fr);
}

/* INDUSTRIAL PAGE RESPONSIVE */
@media (max-width: 992px) {
  .industrial-value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .industrial-hero {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/industrial-hero-mobile.jpg');
    min-height: 280px;
    padding: 60px 5%;
    background-position: center center;
  }

  .industrial-hero-inner {
    padding: 0;
  }

  .industrial-hero-content h1 {
    font-size: 40px;
  }

  .industrial-hero-content p {
    font-size: 18px;
  }

  .industrial-value-grid {
    grid-template-columns: 1fr;
  }
}

/* MATERIALS PAGE */
.materials-hero {
  position: relative;
  background-image: linear-gradient(rgba(0,0,0,0.46), rgba(0,0,0,0.46)), url('images/materials-hero.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.materials-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10%;
  width: 100%;
}

.materials-hero-content {
  max-width: 720px;
  color: white;
}

.materials-hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 58px;
  line-height: 1.08;
  margin-bottom: 16px;
}

.materials-hero-content p {
  font-size: 22px;
  line-height: 1.6;
}

.materials-intro {
  padding-top: 36px;
}

.materials-feature-strip {
  padding-top: 20px;
  padding-bottom: 20px;
}

.materials-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.materials-feature-item {
  text-align: center;
  padding: 10px 18px;
}

.materials-feature-item h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  margin-bottom: 12px;
  color: #222;
}

.materials-feature-item p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 0;
}

/* MATERIALS PAGE RESPONSIVE */
@media (max-width: 992px) {
  .materials-feature-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .materials-hero {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/materials-hero-mobile.jpg');
    min-height: 300px;
    padding: 60px 5%;
    background-position: center center;
  }

  .materials-hero-inner {
    padding: 0;
  }

  .materials-hero-content h1 {
    font-size: 40px;
  }

  .materials-hero-content p {
    font-size: 18px;
  }

  .materials-feature-item h3 {
    font-size: 22px;
  }
}

/* CONTACT PAGE */
.contact-hero {
  position: relative;
  background-image: linear-gradient(rgba(0,0,0,0.46), rgba(0,0,0,0.46)), url('images/hero.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 360px;
  display: flex;
  align-items: center;
}

.contact-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10%;
  width: 100%;
}

.contact-hero-content {
  max-width: 650px;
  color: white;
}

.contact-hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 58px;
  line-height: 1.08;
  margin-bottom: 16px;
}

.contact-hero-content p {
  font-size: 22px;
  line-height: 1.6;
}

.contact-intro {
  padding-top: 36px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  gap: 32px;
  align-items: start;
}

.contact-info-card,
.contact-form-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  padding: 32px;
}

.contact-info-card h3,
.contact-form-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  margin-bottom: 24px;
  color: #222;
}

.contact-info-item {
  margin-bottom: 26px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ececec;
}

.contact-info-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-info-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  margin-bottom: 8px;
  color: #222;
}

.contact-info-item p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 0;
}

.contact-form {
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  background: #fff;
  color: #333;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d92b2b;
}

.contact-form .btn-primary {
  border: none;
  cursor: pointer;
  font-size: 16px;
  padding: 14px 28px;
}

/* CONTACT PAGE RESPONSIVE */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/hero-mobile.jpg');
    min-height: 280px;
    padding: 60px 5%;
    background-position: center center;
  }

  .contact-hero-inner {
    padding: 0;
  }

  .contact-hero-content h1 {
    font-size: 40px;
  }

  .contact-hero-content p {
    font-size: 18px;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 24px 20px;
  }

  .contact-info-card h3,
  .contact-form-card h3 {
    font-size: 26px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}