* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; line-height: 1.6; color:#111; }
a { text-decoration: none; }
img { max-width: 100%; height: auto; }

header, footer { background: #003366; color: #fff; }
.sticky-header { position: sticky; top: 0; z-index: 999; }

.navbar {
  display: flex; align-items: center; justify-content: space-between;
  background: #003366; color: white; padding: 0.8rem 1.2rem; position: relative; flex-wrap: wrap;
}
.logo img { height: 60px; }
.nav-links { list-style: none; display: flex; gap: 1rem; }
.nav-links li a { color: white; padding: 0.6rem 1rem; display: block; border-radius: 4px; }
.nav-links li a:hover, .nav-links li a.active { background: #0055aa; }

.hamburger { display: none; font-size: 28px; cursor: pointer; color: white; }
#menu-toggle { display: none; }
@media (max-width: 768px) {
  .hamburger { display: block; }
  .nav-links { flex-direction: column; width: 100%; display: none; background: #003366; margin-top: 1rem; }
  .nav-links li { border-top: 1px solid rgba(255, 255, 255, 0.1); }
  #menu-toggle:checked + .hamburger + .nav-links { display: flex; }
}

.banner {
  background: url('paintsconsultingbanner2.jpg') no-repeat center center/cover;
  height: 500px; display: flex; justify-content: center; align-items: center;
  color: white; text-shadow: 1px 1px 3px black; font-size: 2rem; text-align: center;
  padding: 0 16px;
}

.container { max-width: 1200px; margin: auto; padding: 40px 20px; }
.section-soft { background: #eef; }
.section-light { background: #f9f9f9; }
.section-blueish { background: #eff7ff; }
.section-gridbg { background: #f7fbff; }

.cta-wrap { text-align: center; margin-top: 18px; }
.cta-main {
  display:inline-block;
  background:#ff6600; color:#fff; padding: 12px 22px;
  border-radius: 8px; font-weight: 700;
}
.cta-main:hover { opacity: 0.9; }

.intro-section h2 { font-size: 28px; color: #003366; margin-bottom: 1rem; }
.intro-section p { font-size: 18px; color: #555; max-width: 900px; margin: 0 auto 1.2rem auto; }
.intro-list { list-style: none; padding: 0; font-size: 16px; color: #333; max-width: 700px; margin: 0 auto 1.6rem auto; }
.intro-list li { margin: 6px 0; }

.two-col { display:flex; flex-wrap:wrap; gap: 24px; align-items: center; }
.two-col .col-img { flex: 1 1 380px; max-width: 420px; }
.two-col .col-text { flex: 1 1 520px; }
.two-col .col-text h2 { margin-bottom: 10px; color:#003366; }
.two-col .col-text p { margin-bottom: 12px; color:#222; text-align: justify; }

.grid-3 {
  display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; margin-top: 18px;
}
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } }
.card {
  background:#fff; border: 1px solid #e7eef9; border-radius: 14px;
  padding: 18px; box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.card h3 { color:#004080; font-size: 18px; margin-bottom: 8px; }
.card p { color:#333; font-size: 15px; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 40px 20px;
  background: #f7fbff;
}
.products-grid h2 { grid-column: 1/-1; text-align:center; color:#003366; margin-bottom: 10px; }
.product {
  background: white; border-radius: 10px; padding: 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05); text-align: center; transition: transform 0.3s;
}
.product:hover { transform: translateY(-5px); }
.product img {
  width: 100%; max-height: 200px; object-fit: contain; border-radius: 8px; margin-bottom: 15px;
}
.product h3 { font-size: 1.1rem; margin: 10px 0; color: #003366; }
.product p { color:#333; font-size: 14px; }
.product-buttons a {
  display: inline-block; margin: 10px 6px 0; padding: 10px 14px;
  border-radius: 8px; color: white; font-weight: bold;
  background: #ff6600;
}
.product-buttons a:hover { opacity: 0.9; }

.faq-item { margin-bottom: 16px; padding: 18px; background: #ffffff; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.faq-item h3 { color: #004080; font-size: 18px; margin-bottom: 8px; }
.faq-item p { color: #333333; }

footer { background-color: #1e1e1e; color: #fff; padding: 40px 20px; }
.footer-wrap { max-width: 1200px; margin: auto; display:flex; flex-wrap:wrap; justify-content: space-between; gap: 30px; }
.footer-col { flex: 1 1 250px; }
.footer-title { color:#00bcd4; margin-bottom: 15px; text-align:center; }
.footer-links { list-style:none; padding:0; line-height: 1.8; text-align:center; }
.footer-links a { color:#fff; }
.footer-links a:hover { text-decoration: underline; }
.footer-bottom { text-align:center; font-size: 14px; margin-top: 18px; color:#ddd; }

/* Popup Form */
.popup-form {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}
.popup-content {
  background: white;
  padding: 30px;
  border-radius: 12px;
  max-width: 420px;
  width: 92%;
  position: relative;
  box-shadow: 0 0 25px rgba(0,0,0,0.2);
}
.popup-content h3 { color: #003366; margin-bottom: 16px; }
.popup-content input, .popup-content textarea {
  width: 100%; padding: 10px; margin-bottom: 12px;
  border: 1px solid #ccc; border-radius: 8px;
}
.popup-content button {
  background: #003366; color: #fff;
  padding: 12px 20px; border: none; border-radius: 8px;
  cursor: pointer; width: 100%;
}
.close-popup {
  position: absolute; top: 10px; right: 14px;
  font-size: 24px; cursor: pointer; color: #333;
}
