/* ===== Global ===== */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f2f2f2;
  color: #333;
  text-align: center;
}

h1, h2 {
  color: #2c7a7b;
}

a {
  color: #2c7a7b;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ===== Header ===== */
header {
  background-color: #2c7a7b;
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.logo span {
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
}

nav ul.menu {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav ul.menu li a {
  color: white;
  font-weight: bold;
  font-size: 1rem;
}

nav ul.menu li a:hover,
nav ul.menu li a.active {
  color: #cce7e8;
}

.menu-icon {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

#menu-toggle {
  display: none;
}

/* ===== Responsive Menu ===== */
@media(max-width:768px) {
  nav ul.menu {
    flex-direction: column;
    position: absolute;
    top: 65px;
    right: 0;
    background-color: #2c7a7b;
    padding: 10px 20px;
    border-radius: 8px;
    display: none;
  }

  #menu-toggle:checked + .menu-icon + nav ul.menu {
    display: flex;
  }

  .menu-icon {
    display: block;
    margin-left: auto;
  }
}

/* ===== Hero Image ===== */
.hero-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* ===== Contact Form ===== */
.contact-form-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 40px 30px;
  background: #e0f7f5;
  border-radius: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.contact-form-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.form-block {
  flex: 1;
  min-width: 240px;
  max-width: 330px;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

input, select, textarea {
  width: 100%;
  padding: 10px;
  font-size: 0.95rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
}

textarea {
  resize: vertical;
}

label {
  font-weight: bold;
  color: #2c7a7b;
  margin-bottom: 5px;
  display: block;
}

.tour-button {
  width: 100%;
  padding: 15px;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  border-radius: 12px;
  background-color: #2c7a7b;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.tour-button:hover {
  background-color: #1b4f51;
  transform: scale(1.05);
}

/* ===== Contact Form Call to Action ===== */
.contact-call-to-action {
  margin-bottom: 30px;
  text-align: center;
}

.contact-call-to-action h2 {
  font-size: 1.8rem;
  color: #2c7a7b;
  margin-bottom: 10px;
}

.contact-call-to-action p {
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
}

/* ===== Complementary Call ===== */
.complementary-call-section {
  max-width: 900px;
  margin: 50px auto;
  padding: 50px 30px;
  background: linear-gradient(135deg, #e0f7f5, #ffffff);
  border-radius: 25px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  text-align: center;
}

.complementary-call-section h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.call-intro {
  max-width: 650px;
  margin: 0 auto 30px auto;
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
}

.call-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.call-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.call-block {
  flex: 1;
  min-width: 240px;
  max-width: 300px;
  text-align: left;
}

.call-block label {
  font-weight: bold;
  color: #2c7a7b;
  margin-bottom: 8px;
  display: block;
}

.call-block select,
.call-block input {
  width: 100%;
  padding: 12px;
  font-size: 0.95rem;
  border-radius: 10px;
  border: 1px solid #ccc;
  outline: none;
  transition: border 0.3s;
}

.call-block select:focus,
.call-block input:focus {
  border-color: #2c7a7b;
  box-shadow: 0 0 6px rgba(44, 122, 123, 0.3);
}

/* Button override */
.complementary-call-section .tour-button {
  max-width: 300px;
  margin: 20px auto 0 auto;
}

/* ===== Policies, Assumption, Locations ===== */
.policies-section, .assumption-section, .our-locations-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 40px 30px;
  background: #e0f7f5;
  border-radius: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  text-align: center;
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border-radius: 12px;
}

/* ===== Footer ===== */
footer {
  background-color: #2c7a7b;
  color: white;
  text-align: center;
  padding: 15px 10px;
  margin-top: 20px;
}

footer a {
  color: #ffd700;
  font-weight: bold;
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 100;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  border-radius: 50px;
}

/* ===== Responsive adjustments ===== */
@media (max-width: 768px) {
  .contact-form-container {
    flex-direction: column;
    align-items: center;
  }

  .form-block {
    width: 100%;
    max-width: 100%;
  }

  /* Submit button automatically at the end */
  .contact-form-container .tour-button {
    width: 80%;
    margin: 20px auto 0 auto;
  }
}
