/* RESET + BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
}

/* CONTAINER */
/* ADD VISUAL DEPTH */
.container {
  max-width: 90%;
  margin: auto;
  padding: 0 15px;
}

/* =========================
   HEADER LAYOUT
========================= */

.site-header {
  width: 100%;
  background: #0f172a;
  position: sticky;
  top: 0;
  z-index: 1000;
  margin-bottom: 0;
  position: relative;
}

/* DESKTOP HEADER STRUCTURE */
/* HEADER GRID */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  position: relative;
}

/* LOGO LEFT */
.logo {
  flex: 1;
}

.logo-img {
  height: 100px;
  display: block;
}

/* FORCE TRUE CENTER */
.nav-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* PREVENT OVERLAP */
.nav-menu ul {
  display: flex;
  gap: 25px;
  list-style: none;
  white-space: nowrap;
}

.nav-menu ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}

/* CTA RIGHT */
.header-cta {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* BUTTONS */
.btn {
  padding: 8px 14px;
  font-size: 14px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
}

.call-btn {
  background: #f97316;
  color: #fff;
}

.whatsapp-btn {
  background: #25D366;
  color: #fff;
}

/* MENU TOGGLE */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}

/* =========================
   MOBILE FIXED STRUCTURE
========================= */

@media (max-width: 768px) {

  .header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    height: auto;
    padding: 10px 0;
  }
  
  .logo-img {
    height: 90px;
  }

  .header-cta {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .menu-toggle {
    display: block !important;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    margin-top: 8px;
    z-index: 9999;
  }

  @media (max-width: 768px) {

  .nav-menu {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: #0b1a33;
    display: none;
    flex-direction: column;
    border-radius: 12px;
    text-align: center;
    padding: 20px 0;
    z-index: 999;
  }

  .nav-menu ul {
    flex-direction: column;
    padding: 0;
    margin: 0;
  }

  .nav-menu ul li {
    list-style: none;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .nav-menu ul li:last-child {
    border-bottom: none;
  }

  .nav-menu ul li a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    display: block;
  }
  
  .nav-menu {
  animation: slideDown 0.3s ease;
  }

  @keyframes slideDown {
  from {
    opacity: 0;
    transform: translate(-50%, -20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}


/* =========================
   HERO SECTION
========================= */

.hero-slider {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 500px;
  overflow: hidden;
  margin-top: 0;
}

/* SLIDES */
.slides {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 2;
}

/* MAIN CONTENT */
.hero-main {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  color: #fff;
}

/* LEFT CONTENT */
.hero-left {
  max-width: 600px;
}

.hero-left h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 15px;
}

.hero-left h1 span {
  color: #f97316;
}

.hero-left p {
  font-size: 16px;
  margin-bottom: 20px;
}

/* BADGES */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-badges span {
  background: rgba(255,255,255,0.1);
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 14px;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 10px;
}

.btn.primary {
  background: #f97316;
  color: #fff;
}

.btn.whatsapp {
  background: #25D366;
  color: #fff;
}

/* FORM */
.hero-form {
  background: #fff;
  color: #000;
  padding: 20px;
  border-radius: 8px;
  width: 320px;
}

.hero-form h3 {
  margin-bottom: 15px;
}

.form-group {
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.form-btn {
  width: 100%;
  padding: 10px;
  background: #0f172a;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.form-note {
  font-size: 13px;
  margin-top: 10px;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 768px) {

  .hero-slider {
    height: auto;
    padding: 40px 0;
  }

  .hero-main {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .hero-left h1 {
    font-size: 22px;
  }

  .hero-left p {
    font-size: 14px;
  }

  .hero-badges {
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-form {
    width: 100%;
    max-width: 350px;
  }
}

/* =========================
   SECTION BASE
========================= */

/* APPLY TO ALL SECTIONS EXCEPT HERO */
section:not(.hero-slider):not(.product-banner):not(.page-banner) {
  padding: 50px 0;
  background: linear-gradient(180deg, #eef2f7 0%, #e6ebf2 100%);
}

/* =========================
   PREMIUM BOX STYLE
========================= */

.about .container,
.nationwide .container,
.seo-content .container {
  background: rgba(255, 255, 255, 0.95);
  padding: 35px 40px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  text-align: center;
  max-width: 850px;
  backdrop-filter: blur(6px);
  transition: 0.3s ease;
}

/* HOVER EFFECT */
.about .container:hover,
.nationwide .container:hover,
.seo-content .container:hover,
.why-us .container:hover {
  transform: translateY(-5px);
}

/* HEADING */
.about h2,
.nationwide h2,
.seo-content h2 {
  font-size: 30px;
  margin-bottom: 15px;
}

/* PARAGRAPH */
.about p,
.nationwide p,
.seo-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #2d3748;
  margin-bottom: 15px;
}

h2 {
  color: #0f172a;
}

/* LIST */
.nationwide ul,
.why-us ul {
  margin-top: 15px;
  text-align: left;
  display: inline-block;
}

.nationwide ul li,
.why-us ul li {
  margin-bottom: 8px;
  font-weight: 500;
}

/* =========================
   PRODUCTS (PREMIUM GRID)
========================= */

.products {
  background: #f4f6f9;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.product-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: 0.3s;
  text-align: center;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-card h3 {
  margin-bottom: 10px;
}

/* =========================
   WHY US (BOX STYLE)
========================= */

.why-us .container {
  background: rgba(255, 255, 255, 0.95);
  padding: 35px 40px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  text-align: center;
  max-width: 850px;
  backdrop-filter: blur(6px);
  transition: 0.3s ease;
}

/* HOVER EFFECT */
.about .container:hover,
.nationwide .container:hover,
.seo-content .container:hover,
.why-us .container:hover {
  transform: translateY(-5px);
}

/* =========================
   CTA (STRONG CONTRAST)
========================= */

.cta {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  text-align: center;
  padding: 60px 20px;
}

.cta .btn.primary {
  margin-top: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.cta h2 {
  color: #0D0D0D;
}

.cta p {
  color: #0D0D0D;
  font-size: 15px;
  margin-top: 10px;
}

/* =========================
   REVIEWS (PREMIUM LOOK)
========================= */

.reviews {
  background: linear-gradient(to bottom, #f4f6f9, #3B3B3B);
  text-align: center;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.review-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.review-card:hover {
  transform: translateY(-5px);
}

.stars {
  color: #facc15;
  margin-bottom: 10px;
}

.review-text {
  font-size: 14px;
  margin-bottom: 10px;
}

/* =========================
   REVIEW SEO BLOCK
========================= */

.review-seo {
  background: #ffffff;
  text-align: center;
}

.review-seo h2 {
  font-size: 22px;
  max-width: 900px;
  margin: auto;
  line-height: 1.5;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 768px) {

  section {
    padding: 50px 15px;
  }

  .about .container,
  .nationwide .container,
  .seo-content .container,
  .why-us .container {
    padding: 25px;
  }

  .product-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: 24px;
  }
}

/* =========================
   FOOTER MAIN
========================= */

.site-footer {
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #fff;
  width: 100%;
  padding-top: 60px;
}

/* FOOTER GRID */
.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* FOOTER COLUMNS */
.footer-col h3 {
  font-size: 18px;
  margin-bottom: 15px;
  position: relative;
}

/* UNDERLINE ACCENT */
.footer-col h3::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #f97316;
  display: block;
  margin-top: 6px;
}

.footer-col {
  transition: 0.3s;
}

.footer-col:hover {
  transform: translateY(-3px);
}

/* TEXT */
.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  color: #cbd5f5;
}

/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #cbd5f5;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #f97316;
  padding-left: 5px;
}

/* CONTACT TEXT */
.footer-col p strong {
  color: #fff;
}

/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #94a3b8;
  margin: 5px 0;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 768px) {

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col h3::after {
    margin: 6px auto 0;
  }

}

/* =========================
   MOBILE HEADER HERO 
   GAP FIX
========================= */
@media (max-width: 768px) {

  .site-header {
    margin-bottom: 0 !important;
  }

  .hero-slider {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  /* REMOVE any accidental spacing */
  section:first-of-type {
    margin-top: 0 !important;
  }

}

@media (max-width: 768px) {

  .menu-toggle {
    display: block !important;
  }

}

/* =========================
   ABOUT HERO
========================= */

.about-hero {
  position: relative;
  background: url('../images/about-factory.jpg') center/cover no-repeat;
  padding: 100px 0;
  color: #fff;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
}

.about-hero-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* LEFT CONTENT */
.about-left {
  flex: 0 0 45%;
}

.about-left h1 {
  font-size: 38px;
  line-height: 1.3;
}

.about-left h1 span {
  color: #f97316;
}

.about-highlight {
  font-weight: 600;
  margin: 15px 0;
  color: #e2e8f0;
}

.about-left p {
  color: #cbd5f5;
  line-height: 1.6;
}

/* POINTS */
.about-points {
  margin-top: 20px;
}

.about-points span {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  padding: 8px 14px;
  margin: 5px;
  border-radius: 6px;
  font-size: 14px;
}

/* =========================
   HERO BUTTONS (UNIFIED STYLE)
========================= */

.about-buttons {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* APPLY SAME STYLE TO BOTH BUTTONS */
.about-buttons .btn {
  background: #f97316;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.about-buttons .btn:hover {
  background: #ea580c;
}

.about-buttons .btn.secondary {
  background: #1e293b;
}

/* RIGHT IMAGE */
.about-right img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 12px;
}

/* =========================
   ABOUT SEO CONTENT
========================= */

.about-seo {
  padding: 60px 0;
  background: linear-gradient(180deg, #eef2f7, #e6ebf2);
}

.about-seo {
  text-align: center;
}

.about-seo p {
  text-align: left;
  max-width: 800px;
  margin: auto;
}

.about-seo .container {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  max-width: 900px;
  margin: auto;
}

/* HEADINGS */
.about-seo h1 {
  font-size: 28px;
  margin-bottom: 15px;
}

.about-seo h2 {
  font-size: 22px;
  margin-top: 25px;
  margin-bottom: 10px;
}

/* TEXT */
.about-seo p {
  color: #334155;
  line-height: 1.7;
}

/* LIST */
.about-seo ul {
  text-align: left;
  max-width: 600px;
  margin: 15px auto;
}

.about-seo ul li {
  margin-bottom: 8px;
}

/* =========================
   MANUFACTURING SECTION
========================= */

.manufacturing {
  margin-top: 40px;
}

.manufacturing-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

/* TEXT */
.manufacturing-text {
  flex: 1;
}

.manufacturing-text p {
  margin-bottom: 15px;
}

/* IMAGE */
.manufacturing-image {
  flex: 1;
}

.manufacturing-image img {
  width: 100%;
  border-radius: 12px;
}

/* =========================
   MOBILE FIX
========================= */

@media (max-width: 768px) {

  .about-hero {
    height: auto;
    padding: 40px 0;
    background-size: cover;
    background-position: center;
  }

  .about-hero-content {
    flex-direction: column;
    text-align: center;
  }

  .about-right img {
    height: 220px;
  }

  }

  .about-left h1 {
    font-size: 26px;
  }

  .manufacturing-content {
    flex-direction: column;
  }

  .about-seo .container {
    padding: 25px;
  }

}

/* =========================
   PRODUCT BANNER (FINAL FIX)
========================= */
.product-banner {
  background: none; /* reset */
}

.product-banner {
  position: relative;
  height: 500px;

  background-image: url("images/product-bannerP.jpeg") !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .product-banner {
    height: 180px;
    background-size: contain;
    background-color: #0f172a;
  }
}

/* =========================
   PRODUCTS SECTION
========================= */

.products-section {
  background: linear-gradient(180deg, #eef2f7, #e6ebf2);
  padding: 60px 0;
}

.products-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* PRODUCT CARD */

.product-item {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  border-top: 4px solid #f97316;
}

/* HOVER EFFECT */
.product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.product-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0f172a;
}

.product-item p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 10px;
}

.product-item ul {
  padding-left: 0;
  list-style: none;
}

.product-item ul li {
  font-size: 14px;
  margin-bottom: 6px;
  color: #334155;
}

@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  display: block;
  width: 100%;
  background: #0f172a;
  color: #fff;
  padding: 40px 0;
  margin-top: 0;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

/* =========================
   CONTACT PAGE BANNER
========================= */
.banner-content {
  position: relative;
  z-index: 2;
}

.page-banner {
  position: relative;
  height: 400px;

  /* IMAGE */
  background-image: url("../images/contact-banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.page-banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.65); /* dark overlay */
}

/* =========================
   CONTACT SECTION
========================= */

.contact-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

/* LEFT INFO */
.contact-info {
  background: #ffffff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.contact-info h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #0f172a;
}

.contact-info p {
  margin-bottom: 10px;
  color: #475569;
  font-size: 15px;
  line-height: 1.6;
}

/* RIGHT FORM */
.contact-form {
  background: #ffffff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.contact-form h3 {
  margin-bottom: 20px;
  font-size: 22px;
  color: #0f172a;
}

/* INPUTS */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #f97316;
  box-shadow: 0 0 0 2px rgba(249,115,22,0.15);
}

/* BUTTON */
.contact-form button {
  width: 100%;
  background: #0f172a;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #f97316;
}

/* NOTE */
.form-note {
  margin-top: 10px;
  font-size: 13px;
  color: #16a34a;
}

/* =========================
   MAP SECTION
========================= */

.map-section {
  padding: 0;
  background: #fff;
}

.map-section .container {
  max-width: 100%;
  padding: 0;
}

.map-section iframe {
  width: 100%;
  height: 350px;
  display: block;
  border: none;
  filter: grayscale(20%);
}

/* =========================
   MOBILE
========================= */

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
}

@media (max-width: 768px) {

  .page-banner {
    height: 180px;
  }

  .banner-content h1 {
    font-size: 24px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .contact-info,
  .contact-form {
    padding: 25px;
  }

}