/* Reset and Basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  font-family: 'Arial', sans-serif;
  background: #f2f2f2;
  color: #262626;
  height: 100%;
  overflow-y: auto;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header Styling - Keep This Same Across All Pages */
.site-header {
  background: #262626;
  padding: 15px 20px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.logo {
  height: 50px;
  width: auto;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-list li a {
  color: #fff;
  text-decoration: none;
  padding: 8px 12px;
  font-size: 16px;
  transition: background 0.3s;
  border-radius: 4px;
}

.nav-list li a.active,
.nav-list li a:hover {
  background: #cdd855;
}

/* Responsive Stack on Mobile */

@media (max-width: 768px) {
  .site-header {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 15px;
  }

  .nav-list {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
}


/* Map section */

.map-section {
  padding: 40px 20px;
  background-color: #f4f4f4;
  text-align: center;
}

.map-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #262626;
}

.map-container {
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  border-radius: 12px;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.contact-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.contact-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
}

.contact-info,
.contact-form {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 30px;
  width: 400px;
}

.contact-info h3,
.contact-form h3 {
  margin-top: 0;
}

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

.contact-form input,
.contact-form textarea {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form button {
  background-color: #00c2cb;
  color: white;
  border: none;
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #009da5;
}

/* Whatapp */

.whatsapp-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: #25D366;
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
  margin-right: 6px;
  display: inline-block;
  object-fit: contain;
}

.whatsapp-number {
  display: inline-block;
}

/* Footer */
.site-footer {
  background: #262626;
  color: #fff;
  padding: 20px;
  text-align: center;
  margin-top: auto;
}

.site-footer p {
  margin-bottom: 12px;
  font-size: 14px;
}

.site-footer .social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.site-footer .social a {
  display: inline-block;
  width: 24px;
  height: 24px;
  overflow: hidden;
}

.site-footer .social a img {
  width: 24px !important;
  height: 24px !important;
  filter: brightness(0) invert(1); /* Makes black icons white */
  object-fit: contain;
  display: block;
}
