@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Barlow:wght@300;400;500;600&display=swap');

/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:    #c0392b;
  --red2:   #e74c3c;
  --dark:   #111214;
  --dark2:  #1a1d21;
  --steel:  #2c3038;
  --mid:    #555c68;
  --light:  #a0a8b4;
  --white:  #f4f5f7;
  --accent: #f0a500;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --radius: 4px;
  --trans: .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  font-size: 16px;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(17,18,20,.96);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--red);
  padding: 0 24px;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
}
.brand span { color: var(--red); }

nav ul {
  display: flex;
  gap: 6px;
}
nav ul li a {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius);
  color: var(--light);
  transition: color var(--trans), background var(--trans);
}
nav ul li a:hover,
nav ul li.active a {
  color: var(--white);
  background: var(--steel);
}
nav ul li.active a { color: var(--accent); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 520px;
  overflow: hidden;
}
.hero-slides { width: 100%; height: 100%; position: relative; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
}
.hero-content {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
}
.hero-content h2 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--white);
  max-width: 560px;
}
.hero-content h2 span { color: var(--red2); }
.hero-content p {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  margin-top: 10px;
  max-width: 420px;
}
.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: background var(--trans), transform var(--trans);
}
.hero-dot.active { background: var(--red); transform: scale(1.3); }

/* ===== SECTION COMMON ===== */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px;
}
.section-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.section-heading {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 40px;
}
.divider {
  width: 48px; height: 3px;
  background: var(--red);
  margin-bottom: 40px;
}

/* ===== HIGHLIGHTS (index row2) ===== */
.highlights {
  background: var(--dark2);
  border-top: 1px solid var(--steel);
  border-bottom: 1px solid var(--steel);
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
}
.highlight-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 40px 32px;
  border-right: 1px solid var(--steel);
  transition: background var(--trans);
}
.highlight-card:last-child { border-right: none; }
.highlight-card:hover { background: var(--steel); }
.highlight-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
}
.highlight-text h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.highlight-text p {
  font-size: 14px;
  color: var(--light);
  line-height: 1.5;
}
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: opacity var(--trans);
}
.whatsapp-btn:hover { opacity: .85; }
.whatsapp-btn svg { width: 16px; height: 16px; fill: #fff; }

/* ===== FEATURE CARDS (index row3) ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.feature-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.feature-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.feature-card:hover img { transform: scale(1.06); }
.feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.feature-overlay p {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 1px;
}

/* ===== CTA STRIP ===== */
.cta-strip {
  background: var(--red);
  padding: 48px 24px;
  text-align: center;
}
.cta-strip h3 {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
}
.cta-strip p { color: rgba(255,255,255,.85); font-size: 15px; margin-bottom: 20px; }
.btn-primary {
  display: inline-block;
  background: #fff;
  color: var(--red);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 32px;
  border-radius: var(--radius);
  transition: opacity var(--trans);
}
.btn-primary:hover { opacity: .88; }

/* ===== SERVICES PAGE ===== */
.services-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.services-main img {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.services-main h2 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
  margin-top: 32px;
}
.services-main p { color: var(--light); font-size: 15px; line-height: 1.7; margin-bottom: 12px; }
.sidebar-box {
  background: var(--dark2);
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  padding: 28px;
}
.sidebar-box h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  border-bottom: 1px solid var(--steel);
  padding-bottom: 12px;
}
.review-item { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--steel); }
.review-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.review-item .reviewer {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.review-item p { font-size: 13px; color: var(--light); line-height: 1.5; }
.stars { color: var(--accent); font-size: 12px; margin-bottom: 4px; }
.info-box {
  background: var(--steel);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 20px;
}
.info-box p { font-size: 13px; color: var(--light); margin-bottom: 6px; }
.info-box strong { color: var(--white); }

/* ===== PRODUCTS PAGE ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.product-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  background: var(--steel);
}
.product-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease, filter .4s ease;
}
.product-card:hover img { transform: scale(1.08); filter: brightness(.7); }
.product-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
  background: rgba(192,57,43,.25);
}
.product-card:hover .product-card-overlay { opacity: 1; }
.product-card-overlay span {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: 8px 20px;
  border-radius: var(--radius);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.92);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 28px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  line-height: 1;
}

/* ===== ABOUT PAGE ===== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}
.about-intro-text h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.about-intro-text p { color: var(--light); font-size: 15px; line-height: 1.8; margin-bottom: 14px; }
.about-intro img {
  width: 100%;
  border-radius: var(--radius);
  border: 2px solid var(--steel);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 64px;
  background: var(--steel);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-box {
  background: var(--dark2);
  padding: 32px 24px;
  text-align: center;
}
.stat-box .number {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-box p { font-size: 13px; color: var(--light); text-transform: uppercase; letter-spacing: 1px; }
.about-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.about-gallery img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-icon {
  width: 40px; height: 40px;
  background: var(--steel);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.contact-item-text p { font-size: 14px; color: var(--light); line-height: 1.5; }
.contact-item-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 3px;
}
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--steel);
}
.map-wrap iframe { display: block; width: 100%; height: 440px; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark2);
  border-top: 2px solid var(--red);
  padding: 40px 24px 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
}
.footer-brand {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--white);
}
.footer-brand span { color: var(--red); }
.footer-brand p { font-size: 13px; color: var(--mid); font-family: var(--font-body); font-weight: 400; margin-top: 4px; letter-spacing: 0; }
.footer-nav { display: flex; gap: 24px; }
.footer-nav a {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--light);
  transition: color var(--trans);
}
.footer-nav a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--steel);
  padding-top: 20px;
  font-size: 12px;
  color: var(--mid);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ===== PAGE BANNER ===== */
.page-banner {
  background: linear-gradient(135deg, var(--dark2) 0%, var(--steel) 100%);
  border-bottom: 2px solid var(--red);
  padding: 52px 24px;
}
.page-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.page-banner h1 {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.page-banner h1 span { color: var(--red); }
.breadcrumb {
  font-size: 13px;
  color: var(--mid);
  margin-top: 8px;
}
.breadcrumb a { color: var(--light); transition: color var(--trans); }
.breadcrumb a:hover { color: var(--accent); }

/* ===== MOBILE ===== */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }

@media (max-width: 900px) {
  .services-layout { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .about-gallery { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { flex-wrap: wrap; gap: 12px; }
}
@media (max-width: 680px) {
  .hamburger { display: flex; }
  nav { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--dark2); border-bottom: 2px solid var(--red); padding: 16px; }
  nav.open { display: block; }
  nav ul { flex-direction: column; gap: 4px; }
  nav ul li a { display: block; padding: 10px 16px; }
  .hero { height: 380px; }
  .highlight-card { flex-direction: column; }
  .about-gallery { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
