/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  font-family: 'Poppins', Arial, sans-serif;
  line-height: 1.7;
  color: #222;
  background: #fff;
}

/* HERO */
.hero {
  height: 100vh;
  background: url("header.webp") center / cover no-repeat;
  position: relative;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

/* NAV */
.nav {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  color: #fff;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  height: 55px;
  width: auto;
}

.nav h2 {
  font-size: 1.2rem;
  font-weight: 600;
}

.nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.nav a:hover {
  opacity: 0.8;
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  height: calc(100% - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero p {
  margin: 20px 0;
  font-size: 1.15rem;
  max-width: 800px;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.primary {
  background: #0a3cff;
  color: #fff;
}

.primary:hover {
  background: #082fb8;
}

.secondary {
  border: 2px solid #fff;
  color: #fff;
}

.secondary:hover {
  background: #fff;
  color: #000;
}

/* SECTIONS */
.section {
  padding: 80px 10%;
}

.light {
  background: #f5f7fa;
}

.dark {
  background: #0b1a2d;
  color: #fff;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* TEXT */
.lead {
  text-align: center;
  max-width: 800px;
  margin: 20px auto;
  font-size: 1.05rem;
}

/* STATS */
.stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.stats h3 {
  font-size: 2.5rem;
  color: #0a3cff;
  text-align: center;
}

.stats p {
  text-align: center;
}

/* SERVICES GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.box {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  font-size: 0.95rem;
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.gallery img {
  width: 100%;
  border-radius: 15px;
  display: block;
}

/* PROCESS */
.process {
  max-width: 600px;
  margin: 40px auto;
  font-size: 1.05rem;
}

.process li {
  margin-bottom: 15px;
}

/* CONTACT */
.contact-box {
  text-align: center;
  font-size: 1.1rem;
}

/* FOOTER */
footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

/* MENU MOBILE PRO */
.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  user-select: none;
}

/* MOBILE */
@media (max-width: 768px) {

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
    color: #fff;
    margin-left: auto;
  }

  .nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background: rgba(0,0,0,0.85);
    margin-top: 15px;
    padding: 15px 0;
  }

  .nav ul.active {
    display: flex;
  }

  .nav ul li {
    text-align: center;
    padding: 12px 0;
  }

  .nav ul a {
    font-size: 1.1rem;
  }
}

