/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #f8fafc;
  color: #1f2937;
}

/* HEADER (GLASS EFFECT) */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  position: sticky;
  top: 0;
  z-index: 100;

  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo {
  font-weight: 700;
  color: #0f766e;
  font-size: 1.2rem;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  font-weight: 600;
  color: #1f2937;
  position: relative;
}

nav a::after {
  content: "";
  width: 0%;
  height: 2px;
  background: #14b8a6;
  position: absolute;
  bottom: -4px;
  left: 0;
  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

/* HERO (PREMIUM) */
.hero {
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  color: white;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;

  display: flex;
  align-items: center;
  gap: 50px;
}

.hero-text h1 {
  font-size: 3.2rem;
  line-height: 1.2;
}

.hero-text p {
  margin: 20px 0;
  font-size: 1.1rem;
  opacity: 0.9;
}

.hero-text button {
  background: white;
  color: #0f766e;
  padding: 14px 30px;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.hero-text button:hover {
  transform: scale(1.05);
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

/* SECTION */
.section {
  padding: 80px 20px;
  text-align: center;
}

.section h2 {
  font-size: 2.2rem;
  color: #0f766e;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px,1fr));
  gap: 25px;
  margin-top: 40px;
}

/* CARDS (PREMIUM) */



.card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
}

/* CONTACT */
.contact form {
  display: grid;
  gap: 12px;
  max-width: 500px;
  margin: auto;
}

.contact input,
.contact select,
.contact textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
}

.contact button {
  background: #0f766e;
  color: white;
  padding: 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.map-section {
  padding: 50px 20px;
  text-align: center;
}

.map-section h2 {
  font-size: 2rem;
  color: #0f766e;
  margin-bottom: 20px;
}

.map-section iframe {
  width: 100%;
  max-width: 1000px;
  height: 400px;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

/* FOOTER */
footer {
  background: #0f766e;           /* Matching your primary brand color */
  color: white;
  text-align: center;
  padding: 25px 20px;
  font-weight: 500;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}

footer p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Optional: Add hover effect for any links in footer */
footer a {
  color: #d1fae5;
  text-decoration: none;
  transition: 0.3s;
}

footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px 20px;
}

.footer-container h3, .footer-container h4 {
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-container p, .footer-container li, .footer-container a {
  color: #d1fae5;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-container ul {
  list-style: none;
  padding: 0;
}

.footer-container ul li {
  margin-bottom: 8px;
}

.footer-container a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding: 15px 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  color: #d1fae5;
  font-size: 0.85rem;
  margin-top: 20px;
}

/* Mobile */
@media(max-width: 900px){
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}

/* WHATSAPP FLOAT BUTTON */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 22px;
  padding: 15px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* MOBILE */
@media(max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    right: 20px;
    top: 70px;
    background: white;
    padding: 15px;
    border-radius: 10px;
  }

  nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}