/* ============================================================
   GLOBAL RESET & LAYOUT
   ============================================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #8e44ec;
  display: flex;
  justify-content: center;
  padding: 20px;                 /* reduced from 40px */
}

.page-container {
  background: #151515;
  border-radius: 28px;
  max-width: 1200px;
  width: 100%;
  box-shadow: 0 4px 25px rgba(0,0,0,0.4);
  overflow: hidden;
}

/* ============================================================
   HEADER
   ============================================================ */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: rgba(30, 30, 30, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
}
.logo span {
  opacity: 0.8;
}

/* NAVIGATION */
nav ul {
  display: flex;
  list-style: none;
  gap: 28px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.2s;
}

nav a:hover,
nav a.active {
  color: #bb86fc;
  border-bottom: 2px solid #bb86fc;
  padding-bottom: 4px;
}

/* HAMBURGER (mobile only) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  width: 26px;
  height: 3px;
  background: white;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  padding: 60px 24px;
}

.hero h1 {
  font-size: 2.6rem;
  max-width: 100%;
  line-height: 1.3;
  font-weight: 800;
  color: white;
}

.hero h1 .highlight {
  color: #bb86fc;
}

.hero p {
  margin-top: 16px;
  color: #cccccc;
  max-width: 700px;
  line-height: 1.5;
}

.hero-buttons {
  margin-top: 24px;
  display: flex;
  gap: 16px;
}

.btn {
  padding: 14px 30px;
  font-size: 1rem;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}

.btn.primary {
  background: #8e44ec;
  color: white;
}
.btn.primary:hover {
  background: #9b59ff;
}

.btn.secondary {
  background: #222;
  color: white;
  border: 2px solid #8e44ec;
}

/* ============================================================
   SERVICES CIRCLES
   ============================================================ */
.services {
  padding: 40px 24px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.service-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: linear-gradient(145deg, #8e44ec, #bb86fc);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* ============================================================
   PRODUCT GRID
   ============================================================ */
.products {
  padding: 60px 24px;
}

.products h2 {
  text-align: center;
  color: white;
  font-size: 2rem;
  margin-bottom: 30px;
}

.products h2 span {
  color: #bb86fc;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.product-card {
  background: #222;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 0 20px rgba(142, 68, 236, 0.35);
  transition: 0.2s;
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card h3 {
  color: white;
}

.product-card p {
  color: #aaaaaa;
  margin-top: 10px;
}

/* clickable overlay */
.stretched-link {
  position: absolute;
  inset: 0;
  text-indent: -9999px;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  padding: 50px 24px;
  margin: 40px 24px;
  border-radius: 22px;
  background: #222;
  box-shadow: 0 0 25px rgba(142, 68, 236, 0.3);
}

.about h2 {
  color: white;
}

.about p {
  color: #cccccc;
  margin-top: 10px;
  line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-contact {
  padding: 25px;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
}

.top-line,
.bottom-line {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.item {
  display: flex;
  gap: 6px;
  align-items: center;
}

.icon {
  font-size: 1rem;
}

/* ============================================================
   WHATSAPP BUTTON
   ============================================================ */
#whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

#whatsapp-btn img {
  width: 60px;
}

/* ============================================================
   RESPONSIVE FIXES
   ============================================================ */

/* Tablet */
@media (max-width: 992px) {
  nav ul {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

/* Mobile */
@media (max-width: 600px) {

  body {
    padding: 10px;       /* FIX: stops mobile zoom-out */
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 2.4rem;
  }

  .hero {
    padding: 40px 18px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .btn {
    width: 100%;
    text-align: center;
  }

  .service-circle {
    width: 110px;
    height: 110px;
    font-size: 0.9rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  /* Footer clean alignment */
  .top-line, .bottom-line {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }

  #whatsapp-btn img {
    width: 50px;
  }
}