/* GENERAL */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* ✅ MOST IMPORTANT FIX */
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.container {
  width: 90%;
  margin: auto;
}

/* HEADER */
.site-header {
  background: #0d1b2a;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo h1 {
  margin: 0;
  font-size: 22px;
}

.logo span {
  font-size: 12px;
  color: #ccc;
}

/* Navigation */
.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.nav-menu a:hover {
  color: #fca311;
}

/* CTA Buttons */
.header-cta .btn {
  padding: 8px 14px;
  margin-left: 10px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
}

.call-btn {
  background: #fca311;
  color: #000;
}

.whatsapp-btn {
  background: #25D366;
  color: #fff;
}

.site-header {
  margin-bottom:0;
}

.hero-slider,
.hero-premium,
.hero {
  margin-top: 0;
}

/* Mobile Menu */
@media (max-width: 768px) {

  .header-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding-top: 10px; /* adjust 8–15px as needed */
  }

  /* LOGO CENTER */
  .logo img {
    height: 70px;
  }

  /* CTA BELOW LOGO */
  .header-cta {
    display: flex;
    gap: 10px;
  }

  .header-cta .btn {
    padding: 6px 12px;
    font-size: 13px;
  }

  /* MENU ICON BELOW CTA */
  .menu-toggle {
    display: block;
    font-size: 26px;
    margin-top: 5px;
  }

  /* NAV MENU */
  .nav-menu {
    position: absolute;
    top: 140px; /* adjust based on header height */
    left: 0;
    width: 100%;
    background: #0d1b2a;
    display: none;
  }

  .nav-menu ul {
    flex-direction: column;
    padding: 10px;
  }
}

.menu-toggle {
  display: none;
}

.header-cta {
  justify-content: center;
}

.menu-toggle {
  color: #fff;
}

.nav-menu {
  top: 150px;
}

/* FOOTER */
.site-footer {
  background: #1b263b;
  color: #fff;
  padding: 40px 0 10px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.footer-col h3 {
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col a {
  color: #ccc;
  text-decoration: none;
}

.footer-col a:hover {
  color: #fca311;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  margin-top: 20px;
  padding-top: 10px;
}

/* RESPONSIVE */
/* SHOW ONLY ON MOBILE */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #0d1b2a;
    flex-direction: column;
  }

  .nav-menu ul {
    flex-direction: column;
    padding: 10px;
  }

  .footer-container {
    grid-template-columns: 1fr; /* ✅ stack columns */
    text-align: center;
  }

  .footer-col {
    margin-bottom: 20px;
  }

}

/* HOME PAGE */
/* HERO */
#header, #footer {
  display: block;
  margin: 0;
  padding: 0;
}

.hero {
  background: url('https://images.unsplash.com/photo-1504280390368-361c6d9f38f4') center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 36px;
}

.hero-buttons {
  margin-top: 20px;
}

.btn.primary {
  background: #fca311;
  color: #000;
  padding: 10px 20px;
  margin: 5px;
}

.btn.secondary {
  background: #25D366;
  color: white;
  padding: 10px 20px;
}

/* SECTIONS */
section {
  margin: 0;   /* remove extra gap */
  padding: 50px 0;
}

h2 {
  text-align: center;
  margin-bottom: 20px;
}

/* PRODUCTS */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 6px;
  text-align: center;
}

/* WHY US */
.why-us ul {
  list-style: none;
  text-align: center;
}

.why-us li {
  margin: 10px 0;
}

/* CTA */
.cta {
  background: #0d1b2a;
  color: white;
  text-align: center;
}

/* CONTACT */
.contact {
  text-align: center;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 24px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}

.nationwide, .seo-content {
  background: #f9f9f9;
  text-align: center;
}

.nationwide ul {
  list-style: none;
  padding: 0;
}

.nationwide li {
  margin: 8px 0;
}

/* LOGO HEADER */
.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 75px;
  width: auto;
  object-fit: contain;
}

/* Slightly bigger on desktop */
@media (min-width: 768px) {
  .logo-img {
    height: 100px;
  }
}

/* LOGO FOOTER */
.footer-logo {
  height: 50px;
  margin-bottom: 15px;
}

/* HERO PREMIUM */
.hero-premium {
  position: relative;
  background: url('https://images.unsplash.com/photo-1504280390368-361c6d9f38f4') center/cover no-repeat;
  padding: 100px 0;
  color: white;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 27, 42, 0.85);
}

.hero-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* LEFT */
.hero-left {
  flex: 1;
}

.hero-left h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

.hero-left h1 span {
  color: #fca311;
}

.hero-left p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* POINTS */
.hero-points {
  margin-bottom: 20px;
}

.hero-points span {
  display: inline-block;
  margin-right: 15px;
  font-size: 14px;
}

/* BUTTONS */
.hero-buttons .btn {
  padding: 12px 22px;
  margin-right: 10px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.btn.primary {
  background: #fca311;
  color: #000;
}

.btn.whatsapp {
  background: #25D366;
  color: white;
}

/* RIGHT IMAGE */
.hero-right img {
  max-width: 450px;
  width: 100%;
  border-radius: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-left h1 {
    font-size: 26px;
  }

  .hero-right img {
    max-width: 100%;
  }
}

/* HERO SLIDER */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* SLIDES */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: 1s;
}

.slides .active {
  opacity: 1;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(13, 27, 42, 0.75);
  z-index: 1;
}

/* MAIN CONTENT */
.hero-main {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  color: white;
}

/* LEFT */
.hero-left {
  max-width: 600px;
}

.hero-left h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero-left span {
  color: #fca311;
}

.hero-left p {
  margin-bottom: 20px;
  line-height: 1.6;
}

/* BADGES */
.hero-badges span {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 10px;
  font-size: 14px;
}

/* BUTTONS */
.hero-buttons .btn {
  padding: 12px 24px;
  margin-right: 10px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.btn.primary {
  background: #fca311;
  color: black;
}

.btn.whatsapp {
  background: #25D366;
  color: white;
}

/* GLOBAL FIX (add at top if not present) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* HERO FORM FIXED */
.hero-form {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  width: 100%;
  max-width: 340px;   /* prevents overflow */
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-form h3 {
  margin-bottom: 15px;
  font-size: 20px;
  text-align: center;
  color: #000; /* force visible */
}

/* FORM GROUP */
.form-group {
  margin-bottom: 12px;
}

/* INPUTS */
.hero-form input,
.hero-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
}

/* FOCUS EFFECT */
.hero-form input:focus,
.hero-form textarea:focus {
  border-color: #fca311;
  box-shadow: 0 0 5px rgba(252,163,17,0.5);
}

/* TEXTAREA */
.hero-form textarea {
  height: 80px;
  resize: none;
}

/* BUTTON */
.form-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(45deg, #fca311, #ffba08);
  border: none;
  color: black;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* NOTE */
.form-note {
  font-size: 12px;
  color: green;
  text-align: center;
  margin-top: 8px;
}

.hero-form {
  position: relative;
  z-index: 5; /* bring above overlay */
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-main {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .hero-form {
    width: 100%;
    margin-top: 20px;
  }

  .hero-left h1 {
    font-size: 26px;
  }
}

/* REVIEW SECTION */
.reviews {
  background: #f9f9f9;
  padding: 60px 0;
  text-align: center;
}

.reviews h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.review-sub {
  color: #666;
  margin-bottom: 30px;
}

/* GRID FIX */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
}

/* CARD FIX */
.review-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* STARS */
.stars {
  color: #fca311;
  font-size: 16px;
  margin-bottom: 10px;
}

/* TEXT */
.review-text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* NAME */
.review-card h4 {
  margin: 0;
  font-size: 16px;
}

/* ROLE */
.review-card span {
  font-size: 13px;
  color: #777;
}

@media (max-width: 768px) {
  .review-grid {
    grid-template-columns: 1fr;
  }
}

/* ABOUT SEO SECTION */
.about-seo {
  padding: 60px 0;
  background: #ffffff;
  color: #222;
  line-height: 1.7;
}

.about-seo h1 {
  font-size: 30px;
  margin-bottom: 20px;
}

.about-seo h2 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #0d1b2a;
}

.about-seo p {
  margin-bottom: 15px;
}

.about-seo ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.about-seo li {
  margin-bottom: 8px;
}

/* ABOUT HERO */
.about-hero {
  position: relative;
  background: url('https://images.unsplash.com/photo-1526772662000-3f88f10405ff') center/cover no-repeat;
  padding: 100px 0;
  color: white;
}

.about-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(13, 27, 42, 0.85);
  top: 0;
  left: 0;
}

/* CONTENT */
.about-hero-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT */
.about-left {
  max-width: 600px;
}

.about-left h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

.about-left span {
  color: #fca311;
}

.about-left p {
  margin-bottom: 20px;
  line-height: 1.6;
}

/* POINTS */
.about-points span {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 25px;
  font-size: 14px;
}

/* BUTTONS */
.about-buttons .btn {
  padding: 12px 22px;
  margin-top: 15px;
  margin-right: 10px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.btn.primary {
  background: #fca311;
  color: black;
}

.btn.secondary {
  background: #25D366;
  color: white;
}

/* RIGHT IMAGE */
.about-right img {
  max-width: 450px;
  width: 100%;
  border-radius: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-hero-content {
    flex-direction: column;
    text-align: center;
  }

  .about-left h1 {
    font-size: 26px;
  }

  .about-right img {
    max-width: 100%;
  }
}

/* SECTION */
.manufacturing {
  padding: 60px 0;
  background: #f9f9f9;
}

.manufacturing h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
  color: #0d1b2a;
}

/* FLEX LAYOUT */
.manufacturing-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT TEXT */
.manufacturing-text {
  flex: 1;
  font-size: 15px;
  line-height: 1.7;
}

.manufacturing-text p {
  margin-bottom: 15px;
}

.manufacturing-text ul {
  margin-top: 15px;
}

.manufacturing-text li {
  margin-bottom: 8px;
}

/* RIGHT IMAGE */
.manufacturing-image {
  flex: 1;
  text-align: center;
}

.manufacturing-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {

  .manufacturing-content {
    flex-direction: column;
    text-align: center;
  }

  .manufacturing-text {
    order: 2; /* text below image (optional) */
  }

  .manufacturing-image {
    order: 1;
    margin-bottom: 20px;
  }

  .manufacturing h2 {
    font-size: 22px;
  }

}

/* HERO */
.product-hero {
  position: relative;
  background: url('https://images.unsplash.com/photo-1504280390368-361c6d9f38f4') center/cover;
  padding: 100px 0;
  color: white;
  text-align: center;
}

.product-hero .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(13,27,42,0.8);
  top: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* PRODUCTS */
.products-section {
  padding: 60px 0;
}

.products-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

/* PRODUCT ITEM */
.product-item {
  background: #f9f9f9;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.product-item h3 {
  margin-bottom: 10px;
  color: #0d1b2a;
}

.product-item ul {
  margin-top: 10px;
}

@media (max-width: 768px) {

  .product-hero {
    padding: 60px 20px;
  }

  .product-hero h1 {
    font-size: 24px;
  }

  .product-item {
    padding: 15px;
  }

}

.product-item li {
  margin-bottom: 6px;
}

/* SIMPLE BANNER Contact*/
.page-banner {
  position: relative;
  background: url('images/hero.jpeg') center/cover no-repeat;
  color: #fff;
  height: 450px; /* 👈 CONTROL HEIGHT HERE */
  
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.banner-content {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .page-banner {
    height: 150px; /* smaller on mobile */
  }

  .page-banner h1 {
    font-size: 20px;
  }

  .page-banner p {
    font-size: 13px;
  }
}

.product-banner {
  position: relative;
  background: url('images/product-bannerP.jpeg') center/cover no-repeat;
  height: 500px;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: black;
}

.banner-content {
  position: relative;
  z-index: 2;
}

.banner-keywords {
  font-size: 13px;
  color: #aaa;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .product-banner {
    height: 150px;
    padding: 0 15px;
  }

  .product-banner h1 {
    font-size: 22px;
  }

  .product-banner p {
    font-size: 13px;
  }
}

/* WHATSAPP FLOAT */
/* FLOAT BUTTON */
.wa-button {
position: fixed;
bottom: 20px;
right: 20px;
background: #25D366;
color: #fff;
font-size: 24px;
width: 55px;
height: 55px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
z-index: 999;
}

/* POPUP */
.wa-popup {
position: fixed;
bottom: 90px;
right: 20px;
width: 300px;
background: #fff;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
display: none;
overflow: hidden;
z-index: 999;
}

/* HEADER */
.wa-header {
background: #25D366;
color: #fff;
padding: 12px;
display: flex;
justify-content: space-between;
align-items: center;
}

.wa-header button {
background: none;
border: none;
color: #fff;
font-size: 18px;
cursor: pointer;
}

/* BODY */
.wa-body {
padding: 15px;
font-size: 14px;
}

/* BUTTON */
.wa-chat-btn {
display: block;
background: #25D366;
color: #fff;
text-align: center;
padding: 12px;
text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
.trust-grid,
.testimonial-grid {
grid-template-columns: 1fr;
}

/* CONTACT PAGE FORM ONLY */
.contact-form {
  width: 100%;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.contact-form textarea {
  height: 100px;
  resize: none;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: #fca311;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.form-note {
  text-align: center;
  margin-top: 10px;
  color: green;
}

.map-section {
  margin: 40px 0;
}

.map-section iframe {
  width: 100%;
  height: 350px;
  border: none;
  display: block;
}

/* FORCE FIX CONTACT FORM */
.contact-form {
  max-width: 600px;
  margin: 30px auto;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 10px;
}

/* GRID */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* GROUP */
.form-group {
  width: 100%;
}

/* FULL WIDTH ITEMS */
.form-group.full {
  grid-column: span 2;
}

/* INPUTS */
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

/* TEXTAREA */
.form-group textarea {
  height: 100px;
}

/* BUTTON */
.form-group button {
  width: 100%;
  padding: 12px;
  background: #fca311;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full {
    grid-column: span 1;
  }
}