body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0b0b0b;
  color: white;
  position: relative;
  overflow-x: hidden;
}

/* Smoke effect */
body::before,
body::after {
  content: "";
  position: fixed;
  inset: -10%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.14;
  mix-blend-mode: screen;
  filter: blur(34px);
  background-repeat: no-repeat;
  background-size: 42% 30%, 36% 28%, 40% 30%, 30% 24%;
}

body::before {
  background-image:
    radial-gradient(ellipse at 18% 22%, rgba(255,255,255,0.20) 0%, transparent 55%),
    radial-gradient(ellipse at 78% 20%, rgba(255,255,255,0.14) 0%, transparent 52%),
    radial-gradient(ellipse at 30% 78%, rgba(255,255,255,0.10) 0%, transparent 48%),
    radial-gradient(ellipse at 84% 72%, rgba(255,215,0,0.08) 0%, transparent 45%);
  animation: smokeDriftA 24s ease-in-out infinite alternate;
}

body::after {
  opacity: 0.10;
  filter: blur(44px);
  background-image:
    radial-gradient(ellipse at 10% 55%, rgba(255,255,255,0.14) 0%, transparent 54%),
    radial-gradient(ellipse at 55% 35%, rgba(255,255,255,0.10) 0%, transparent 52%),
    radial-gradient(ellipse at 80% 80%, rgba(255,255,255,0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 42% 12%, rgba(255,215,0,0.06) 0%, transparent 48%);
  animation: smokeDriftB 30s ease-in-out infinite alternate;
}

@keyframes smokeDriftA {
  0% { transform: translate3d(-2%, 0%, 0) scale(1); }
  50% { transform: translate3d(2%, -2%, 0) scale(1.05); }
  100% { transform: translate3d(4%, 1%, 0) scale(1.10); }
}

@keyframes smokeDriftB {
  0% { transform: translate3d(2%, 1%, 0) scale(1.02); }
  50% { transform: translate3d(-3%, 3%, 0) scale(1.06); }
  100% { transform: translate3d(-1%, -2%, 0) scale(1.10); }
}

/* HEADER */
.site-header {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.94);
  padding: 15px 0;
  border-bottom: 2px solid gold;
  backdrop-filter: blur(4px);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand h1 {
  margin: 0;
}

.logo {
  width: 60px;
  height: auto;
}

.tagline {
  font-size: 12px;
  color: gold;
  margin: 4px 0 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.nav-links a:hover {
  color: gold;
}

.call-btn {
  background: gold;
  color: black !important;
  padding: 10px 15px;
  border-radius: 6px;
  font-weight: bold;
  display: inline-block;
}

/* HERO */
.hero {
  position: relative;
  z-index: 1;
  padding: 60px 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.16;
  background:
    radial-gradient(ellipse at 15% 30%, rgba(255,255,255,0.18), transparent 45%),
    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.12), transparent 42%),
    radial-gradient(ellipse at 60% 75%, rgba(255,215,0,0.08), transparent 38%);
  filter: blur(28px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-content {
  flex: 1;
}

.hero-image-wrap {
  flex: 1;
}

.hero-image {
  width: 100%;
  border-radius: 12px;
  display: block;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
}

.badge {
  background: gold;
  color: black;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  display: inline-block;
  font-weight: bold;
}

.hero-buttons {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
}

.btn-dark {
  background: gold;
  color: black;
}

.btn-light {
  border: 1px solid white;
  color: white;
}

.hero-info-card {
  background: rgba(26, 26, 26, 0.92);
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
  border: 1px solid rgba(255, 215, 0, 0.18);
}

.review-link {
  color: gold;
  text-decoration: none;
}

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

/* PRODUCTS */
.products-section {
  position: relative;
  z-index: 1;
  padding: 60px 0;
}

.section-heading {
  margin-bottom: 30px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  background: rgba(26, 26, 26, 0.92);
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s ease;
  border: 1px solid transparent;
  box-shadow: 0 0 0 rgba(255, 215, 0, 0);
}

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

.product-card:hover {
  transform: scale(1.05);
  border: 1px solid gold;
  box-shadow: 0 0 24px rgba(255, 215, 0, 0.22);
}

/* CONTACT */
.contact-section {
  position: relative;
  z-index: 1;
  padding: 60px 0;
}

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

.contact-card,
.map-card {
  background: rgba(26, 26, 26, 0.92);
  padding: 20px;
  border-radius: 10px;
}

.contact-card a {
  color: gold;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.map-card iframe {
  border-radius: 8px;
}

/* FOOTER */
.site-footer {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.96);
  padding: 30px 0;
  border-top: 2px solid gold;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-grid {
    flex-direction: column;
  }

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

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

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

@media (max-width: 640px) {
  .nav-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 12px;
  }

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

  .container {
    width: 92%;
  }
}
/* ===== MULTI COLOR SMOKE EFFECT (VISIBLE) ===== */

.smoke-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.smoke {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: floatSmoke 20s infinite ease-in-out;
}

/* Different colors */
.smoke:nth-child(1) { background: rgba(255, 0, 0, 0.6); top: 10%; left: 10%; }
.smoke:nth-child(2) { background: rgba(0, 255, 255, 0.5); top: 40%; left: 70%; }
.smoke:nth-child(3) { background: rgba(255, 0, 255, 0.5); top: 70%; left: 20%; }
.smoke:nth-child(4) { background: rgba(255, 215, 0, 0.5); top: 20%; left: 80%; }
.smoke:nth-child(5) { background: rgba(0, 255, 100, 0.5); top: 60%; left: 50%; }

@keyframes floatSmoke {
  0% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-60px) scale(1.2);
  }
  100% {
    transform: translateY(0px) scale(1);
  }
}

/* ===== Real moving smoke canvas ===== */
#smoke-canvas {
  position: fixed;
  top: 72px; /* starts below header */
  left: 0;
  width: 100%;
  height: calc(100% - 72px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.95;
}

/* Keep all site content above smoke */
.site-header,
.hero,
.products-section,
.contact-section,
.site-footer {
  position: relative;
  z-index: 1;
}

/* Make sections slightly transparent so smoke is visible */
.hero,
.products-section,
.contact-section {
  background: transparent;
}

.hero-info-card,
.product-card,
.contact-card,
.map-card {
  background: rgba(20, 20, 20, 0.82);
  backdrop-filter: blur(4px);
}

/* Optional stronger glow */
.hero-image,
.product-card:hover,
.call-btn,
.btn-dark {
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.18);
}

/* FIX BLOG HERO GAP */
.blog-hero {
    min-height: auto !important;
    padding: 40px 20px 20px !important;
}

/* Reduce space inside hero */
.blog-hero .container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Reduce heading spacing */
.blog-hero h2 {
    margin-bottom: 10px !important;
}

/* Reduce paragraph spacing */
.blog-hero p {
    margin-bottom: 10px !important;
}

/* Reduce badge spacing */
.blog-hero .badge {
    margin-bottom: 10px !important;
}

/* Remove extra space below hero */
.blog-hero + .products-section {
    margin-top: 0 !important;
    padding-top: 20px !important;
}

/* ===== BLOG CARD IMAGE FIX ===== */
.news-card__image-wrap {
  display: block;
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
  background: #111;
}

.news-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== BLOG POST FEATURED IMAGE SIZE FIX ===== */
.blog-featured-image {
  width: 100%;
  max-width: 720px;
  height: 320px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  margin: 0 auto 20px auto;
  box-shadow: 0 8px 26px rgba(0,0,0,0.25);
}

/* ===== BETTER BLOG ARTICLE WIDTH ===== */
.blog-article {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== MODERN BLOG CARD LOOK ===== */
.news-card {
  background: rgba(20,20,20,0.92);
  border: 1px solid rgba(255,215,0,0.14);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(0,0,0,0.28);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,215,0,0.35);
  box-shadow: 0 16px 40px rgba(0,0,0,0.34);
}

.news-card__body {
  padding: 18px;
}

.news-card__body h3 {
  margin: 10px 0;
  font-size: 20px;
  line-height: 1.4;
}

.news-card__body p {
  margin: 0 0 12px 0;
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {
  .news-card__image-wrap {
    height: 200px;
  }

  .blog-featured-image {
    max-width: 100%;
    height: 240px;
  }
}

/* MAIN GRID */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

/* RIGHT SIDE SPLIT */
.hero-right {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  height: 100%;
}

/* IMAGE */
.hero-image-wrap {
  height: 100%;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* OFFERS CARD */
.offers-card {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  padding: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.offers-card h3 {
  color: #ffd700;
  margin-bottom: 10px;
}

.offers-card ul {
  padding-left: 18px;
  margin-bottom: 10px;
}

.offers-card a {
  color: #ff4d4d;
  text-decoration: none;
}

.review-btn {
  margin-top: 10px;
  display: inline-block;
  padding: 8px 14px;
  background: #e63946;
  border-radius: 6px;
  color: #fff !important;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-right {
    grid-template-rows: auto auto;
  }
}

/* ===== HERO RIGHT SIDE SIZE MATCH UPDATE ===== */
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
  gap: 30px;
  align-items: stretch;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.hero-content-top {
  display: block;
}

.hero-content .hero-info-card {
  margin-top: 24px;
}

.hero-right {
  display: grid;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
  height: 100%;
  min-height: 100%;
}

.hero-image-wrap,
.offers-card {
  min-height: 0;
}

.hero-image-wrap {
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.offers-card {
  background: rgba(20, 20, 20, 0.88);
  border: 1px solid rgba(255, 215, 0, 0.28);
  border-radius: 12px;
  padding: 22px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.offers-card h3 {
  margin: 0 0 12px;
  color: #f3e38a;
}

.offers-intro {
  margin: 0 0 12px;
  color: #d1d5db;
  line-height: 1.6;
}

.offers-list {
  margin: 0;
  padding-left: 20px;
  color: #ffffff;
  line-height: 1.7;
}

.offers-note {
  margin: 14px 0 0;
  color: #c4c8d0;
  font-size: 14px;
  line-height: 1.6;
}

.offers-note a,
.offers-card a {
  color: #ff7171;
  text-decoration: none;
}

.offers-review-wrap {
  margin: 14px 0 0;
}

.review-btn {
  display: inline-block;
  padding: 10px 14px;
  background: linear-gradient(90deg, #ff7eb3, #ff5f6d);
  border-radius: 8px;
  color: #fff !important;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-right {
    grid-template-rows: auto auto;
  }
}

.seo-hidden {
  display: none;
}
