/* =====================
   SERVICES LAYOUT
===================== */

:root {
  --black: #0b0b0b;
  --dark: #121212;
  --gray: #888;
  --light-gray: #cfcfcf;
  --white: #ffffff;

  --accent-blue: #3a6cf4;
  --accent-red: #e63946;


--glow: rgba(255, 122, 0, 0.6);
}


/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--black);
  color: var(--white);
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* NAVBAR */
.navbar {
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #222;
  padding: 15px 0;
}

.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 800;
  font-size: 22px;
  text-shadow: 0 0 10px var(--glow);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}
.nav-links a {
  color: var(--light-gray); /* keep one */
  position: relative;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
  margin-left: 40px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;   
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 5px;
  transform: scaleX(0);
  transition: transform .5s;
}



 .nav-links a:hover::after {
  transform: scaleX(1);
}
 
/*  phone */

.phone {
  font-size: 14px;
  color: var(--gray);
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  background: url("visuals/mainpage.png") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(7, 7, 7, 0.9),
    rgba(100, 96, 96, 0.6)
  );
}

.hero-content {
  position: relative;
  margin-left: 10%;
  max-width: 600px;
}

.hero .sub {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gray);
}

.hero h1 {
  font-size: 60px;
  font-weight: 800;
  margin: 20px 0;
  line-height: 1.2;

  text-shadow:
    0 0 5px var(--glow),
    0 0 15px rgba(255,255,255,0.3);
}

.style {
    color: var(--accent-blue);
      text-shadow: 0 0 10px rgba(57, 60, 230, 0.7);

}

.power {
  color: var(--accent-red);
  text-shadow: 0 0 10px rgba(230, 57, 70, 0.7);
}




/* BUTTON */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid #444;
  color: var(--white);
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 0 10px var(--glow);
}





    /* =====================
       FOOTER
    ===================== */
    footer {
      background-color: var(--green-light);
      position: relative;
      overflow: hidden;
    }

    footer .container {
      padding-top: 60px;
      padding-bottom: 40px;
      position: relative;
    }

    #asterisk {
      position: absolute;
      top: -95px;
      left: -10px;
      font-size: 200px;
      line-height: 1;
      color: var(--green-dark);
      opacity: 0.18;
      pointer-events: none;
      font-family: serif;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 32px;
      position: relative;
    }

    .footer-col h4 {
      color: var(--white);
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 14px;
      font-family: 'Lato', sans-serif;
      font-weight: 700;
    }

    .footer-col p,
    .footer-col address {
      font-size: 14px;
      line-height: 2;
      color: var(--cream);
      font-style: normal;
    }

    .footer-col ul {
      list-style: none;
    }

    .footer-col ul li {
      font-size: 14px;
      color: var(--cream);
      line-height: 2;
    }

    #footer-social img {
  width: 24px; /* optional size */
  filter: brightness(0) invert(1);
}

    ul#footer-social {
      display: flex;
      gap: 14px;
      margin-top: 10px;
    }

    ul#footer-social li a {
      color: var(--white);
      font-size: 22px;
      transition: color 0.2s;
    }

    ul#footer-social li a:hover { color: var(--brown); }

    .footer-email {
      color: var(--cream);
      text-decoration: underline;
      font-size: 14px;
    }

    .footer-bottom {
      margin-top: 36px;
      border-top: 1px solid rgba(255,255,255,0.2);
      padding-top: 18px;
      text-align: center;
      font-size: 12px;
      color: rgba(255,255,255,0.6);
      font-family: 'Lato', sans-serif;
    }























/* ANIMATION */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 15px;
    background: black;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 20px;
  }

  .nav-links.active {
    display: flex;
  }

  .phone {
    display: none;
  }

  .hero h1 {
    font-size: 36px;
  }

  .info-strip {
    flex-direction: column;
    gap: 20px;
  }
}

.services-wrapper {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

/* LEFT */
.services-box {
  flex: 2;
}

/* RIGHT */
.side-box {
  flex: 1;
  background: #111;
  padding: 20px;
  border-radius: 10px;
}

/* TITLES */
.section-title {
  font-size: 20px;
  font-weight: 700;
  margin: 30px 0 15px;
  color: rgba(230, 57, 70, 0.7);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 5px;
}

/* SERVICE ROW */
.service-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.2);
  transition: 0.3s;
}

.service-item:hover {
  box-shadow: 0 0 10px var(--glow);
  color: rgba(57, 60, 230, 0.7);
  transform: translateX(5px);
}

.price {
  font-weight: 600;
}

/* DEAL BOX */
.deal {
  margin-bottom: 15px;
  padding: 15px;
  background: #1a1a1a;
  border-left: 3px solid  rgba(230, 57, 70, 0.7);
  transition: 0.3s;
}

.deal:hover {
  box-shadow: 0 0 10px var(--glow);
  background: #222;
   color: rgba(57, 60, 230, 0.7);
  transform: translateY(-3px);
}

.deal-title {
  font-weight: bold;
  color: rgba(57, 60, 230, 0.7);
  margin-bottom: 5px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .services-wrapper {
    flex-direction: column;
  }
}

/* =====================
   PRODUCTS SECTION
===================== */
#products {
  background: #0a0a0a;
  padding: 100px 0; /* more breathing space */
  text-align: center;
}

#products h2 {
  margin-bottom: 50px;
}

/* GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px; /* more spacing */
}

/* CARD */
.product-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 15px; /* slightly bigger */
  border-radius: 12px;
  transition: 0.3s;
}

/* IMAGE (BIGGER 🔥) */
.product-card img {
  width: 100%;
  height: 280px;   /* ⬅️ increased from 200 → 280 */
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* TITLE */
.product-card h3 {
  font-size: 18px;  /* bigger text */
  color: #fff;
}

/* HOVER EFFECT */
.product-card:hover {
    border-color:  rgba(57, 60, 230, 0.7);
  transform: translateY(-10px) scale(1.02);
    box-shadow: 0 0 10px var(--glow); 
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card img {
    height: 240px;
  }
}