/* =========================
   GLOBAL
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: #f5f5f5;
  color: #1f3f46;
  line-height: 1.6;
}

h1 {
  font-family: 'Playfair Display', serif;
  color: #ffffff;
}

h2, h3 {
  font-family: 'Playfair Display', serif;
  color: #08055d;
}

/* =========================
   BACK HOME (FIXED)
========================= */
.back-home {
  position: fixed;
  top: 15px;
  left: 15px;
  background: rgba(1,25,30,0.9);
  color: #fff;
  padding: 6px 14px;
  border-radius: 25px;
  text-decoration: none;
  z-index: 1000;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.3s ease;
}

.back-home:hover {
  background: rgba(47,100,109,0.95);
}

/* =========================
   HEADER
========================= */
.contact-header {
  text-align: center;
  padding: 25px 20px;
  background: linear-gradient(180deg, #01191e, #2f646d);
  color: #fff;
}

.contact-header .logo img {
  width: 120px;
  margin-bottom: 10px;
}

.contact-header h1 {
  font-size: 2.5rem;
  margin-bottom: 5px;
}

.contact-header p {
  font-size: 1rem;
  opacity: 0.85;
}

/* =========================
   SECTION
========================= */
.contact-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

/* =========================
   GRID
========================= */
.contact-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* =========================
   CONTACT INFO
========================= */
.contact-info {
  flex: 1 1 300px;
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.contact-info ul {
  list-style: none;
  margin-top: 15px;
}

.contact-info li {
  margin-bottom: 15px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info i {
  color: #2fc4b2;
}

/* =========================
   FORM
========================= */
.contact-form {
  flex: 1 1 400px;
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 0.95rem;
  background: #fff;
  color: #333;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  width: 100%;
  background: #2fc4b2;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #1f9e8f;
}

/* =========================
   MAP
========================= */
.map-container {
  margin-bottom: 40px;
}

.map-container h2 {
  margin-bottom: 15px;
  text-align: center;
}

/* =========================
   FAQ
========================= */
.faq-section {
  margin-bottom: 40px;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 20px;
}

.faq-item {
  background: #ffffff;
  padding: 20px 25px;
  border-radius: 15px;
  margin-bottom: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 0.9rem;
  color: #555;
}

/* =========================
   FOOTER
========================= */
.footer {
  text-align: center;
  padding: 15px;
  background: #01191e;
  color: #fff;
  border-top: 1px solid #2f646d;
}

/* =========================
   WHATSAPP BUTTON (LUXE)
========================= */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 55px;
  height: 55px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  z-index: 999;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float i {
  font-size: 26px;
  color: #fff;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(0,0,0,0.45);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .contact-grid {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .contact-header h1 {
    font-size: 2rem;
  }

  .contact-header p {
    font-size: 0.9rem;
  }

  .contact-info,
  .contact-form {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .contact-header h1 {
    font-size: 1.5rem;
  }

  .contact-header p {
    font-size: 0.8rem;
  }

  .contact-info li {
    font-size: 0.8rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.85rem;
  }
}
