* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #2D3436;
  background: #F9F9F9;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
}

.btn-call {
  background: #4ECDC4;
  color: white;
}

.btn-email {
  background: #A29BFE;
  color: white;
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  padding: 12px 0;
}

.nav-container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: bold;
  color: #FF6B6B;
}

.logo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text {
  font-size: 22px;
  color: #242424;
  font-family: Luckiest Guy, cursive;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #2D3436;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #FF6B6B;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #2D3436;
  border-radius: 3px;
  transition: 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background-color: grey;
  background-image: url('images/hero.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 100px 20px 60px;
}

.hero-content {
  max-width: 700px;
  background-color: #24242499;
  border-radius: 12px;
  padding: 40px 30px;
}

.hero h1 {
  font-size: 3.5rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.15);
  margin-bottom: 10px;
}

.tagline {
  font-size: 1.4rem;
  color: white;
  font-style: italic;
  margin-bottom: 15px;
  opacity: 0.95;
}

.hero-desc {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 30px;
  line-height: 1.7;
  opacity: 0.9;
}

.hero-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── SECTION TITLES ── */
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 12px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: #FF6B6B;
}

/* ── ABOUT ── */
.about {
  padding: 80px 0;
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #F9F9F9;
  padding: 16px 20px;
  border-radius: 12px;
  flex: 1;
  border-top: 4px solid #4ECDC4;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: bold;
  color: #FF6B6B;
}

.stat-label {
  font-size: 12px;
  color: #888;
  text-align: center;
  margin-top: 4px;
}

.about-img img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  max-height: 400px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ── SERVICES ── */
.services {
  padding: 80px 0;
  background: #F9F9F9;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.service-card {
  background: white;
  padding: 30px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #FFE66D;
}

.service-card:nth-child(2) { border-top-color: #FF6B6B; }
.service-card:nth-child(3) { border-top-color: #4ECDC4; }
.service-card:nth-child(4) { border-top-color: #A29BFE; }

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #2D3436;
}

.service-card p {
  font-size: 14px;
  color: #777;
  line-height: 1.7;
}

/* ── GALLERY ── */
.gallery {
  padding: 80px 0;
  background: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ── LOCATION ── */
.location {
  padding: 80px 0;
  background: #F9F9F9;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.location-info p {
  font-size: 16px;
  color: #555;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.location-info i {
  color: #4ECDC4;
  width: 20px;
}

.btn.btn-whatsapp{
  background: #777777;
  color: white;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* ── CONTACT ── */
.contact {
  padding: 80px 0;
  background: #335250;
  text-align: center;
}

.contact .section-title {
  color: white;
}

.contact .section-title::after {
  background: white;
}

.contact-desc {
  color: white;
  font-size: 16px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.contact-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
.footer {
  background: #2D3436;
  color: white;
  text-align: center;
  padding: 30px 20px;
  line-height: 2;
}

.footer p {
  opacity: 0.8;
  font-size: 14px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    gap: 16px;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

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

  .about-img {
    order: -1;
  }

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