/* General */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #333;
  background: #f9f9f9;
}

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  margin: 0 0 15px;
}

section {
  padding: 80px 5%;
}

p {
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Hero */
.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
}

.hero .logo {
  width: 420px;
  max-width: 60%;
  margin-bottom: 25px;
  filter: drop-shadow(2px 2px 6px rgba(0,0,0,0.7));
}

.hero h1 {
  font-size: 2.2rem;
  line-height: 1.4;
  margin-bottom: 25px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.btn {
  display: inline-block;
  background: #0077cc;
  color: #fff;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #005fa3;
}

.scroll-down {
  position: absolute;
  bottom: 20px;
  z-index: 2;
}

.scroll-down a {
  color: #fff;
  font-size: 2rem;
}

/* Services */
.services {
  background: #f9f9f9;
  text-align: center;
}

.services h2 {
  margin-bottom: 50px;
  font-size: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.service:hover {
  transform: translateY(-5px);
}

.service .emoji {
  font-size: 3rem;
  margin-bottom: 15px;
}

.service h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  font-weight: bold;
}

/* About */
.about {
  background: #fff;
}

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

.about .image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}

.about .text {
  text-align: justify;
}

.about-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
}

/* Contact */
.contact {
  background: #f1f1f1;
  text-align: center;
}

.contact h2 {
  margin-bottom: 40px;
}

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

.form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form input,
.form textarea,
.form select {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
}

.form textarea {
  resize: vertical;
}

.form button {
  margin-top: 10px;
}

.map-col iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border-radius: 8px;
}

/* Footer */
footer {
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 20px 10px;
  font-size: 0.9rem;
}

footer p {
  margin: 5px 0;
}

/* Responsive */
@media (max-width: 1200px) {
  .hero .logo {
    width: 360px;
  }

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

@media (max-width: 900px) {
  .services-grid,
  .about-content,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero .logo {
    width: 280px;
    max-width: 60%;
  }

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

@media (max-width: 600px) {
  .hero .logo {
    width: 220px;
    max-width: 70%;
  }

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