html {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #f9f9f9;
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

header {
  text-align: center;
  padding: 1em;
  background-color: #fff;
  color: #222;
  border-top: 1px solid #ddd;
}


/* footer */
.footer-section {
  margin-top: 50px;
  position: relative;
  width: 100%;
  background-image: url('/images/Wave1.svg');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  background-color: white;
  overflow: hidden;
  padding: 50px;
}

.footer-text {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-link {
  color: #fff;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

.social-icons svg {
  transition: transform 0.3s ease;
}

.social-icons a:hover svg {
  transform: scale(1.1);
}

.footer-bottom {
  background-color: #fff;
  color: #222;
  font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .footer-section {
    padding: 50px 30px;
    background-size: cover;
  }

  .footer-heading {
    font-size: 1.1rem;
  }

  .footer-text {
    font-size: 0.9rem;
  }

  .footer-link {
    font-size: 0.9rem;
  }

  .footer-section .row > div {
    margin-bottom: 2rem;
  }
}

/* Mobile screens */
@media (max-width: 576px) {
  .footer-section {
    padding: 40px 20px 60px;
    background-size: cover;
    background-position: top center;
    text-align: center;
  }

  .footer-heading {
    font-size: 1.05rem;
  }

  .footer-text {
    font-size: 0.88rem;
  }

  .footer-bottom {
    font-size: 0.85rem;
    padding: 1rem 0;
  }
}

.icon-facebook:hover .social-svg {
  fill: #1877f2;
}

.icon-x:hover .social-svg {
  fill: #000000;
}

.icon-instagram:hover .social-svg {
  fill: #e1306c;
}

.contact-section {
  padding: 60px 30px;
  flex: 1;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
}

.form-column, .map-column {
  flex: 1 1 500px;
}

.subheading {
  color: #e91e63;
  font-weight: bold;
  margin-bottom: 0;
}

.heading {
  text-align: left !important;
  font-size: 28px;
  font-weight: bold;
  margin: 10px 0 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  padding: 10px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
}

textarea {
  margin-top: 15px;
  resize: vertical;
  height: 120px;
}

.checkbox-group {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

button {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #e91e63;
  border: none;
  color: white;
  border-radius: 4px;
  cursor: pointer;
}

.success {
  margin-top: 15px;
  color: green;
  background-color: #d4edda;
  padding: 10px;
  border-radius: 4px;
}

.error {
  margin-top: 15px;
  color: red;
  background-color: #f8d7da;
  padding: 10px;
  border-radius: 4px;
}

.hidden {
  display: none;
}

.map-column iframe {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 8px;
}

/* ====== Navbar Styles ====== */

.navbar {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.navbar-brand img {
  height: 30px;
}

.navbar-nav {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.navbar-nav .nav-item {
  margin-left: 15px;
}

.navbar-toggler {
  display: none;
}

/* Responsive navbar toggle (optional) */
@media (max-width: 768px) {
  .navbar-toggler {
    display: block;
  }

  .navbar-collapse {
    display: none;
  }

  .navbar-collapse.show {
    display: block;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: flex-end;
  }

  .navbar-nav .nav-item {
    margin: 10px 0;
  }
}

/* ====== Button Styles ====== */

.btn.contact-btn {
  background-color: transparent;
  color: #000;
  border: 1px solid #ddd;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn.contact-btn:hover {
  background-color: #e91e63;
  color: #fff;
  border-color: #e91e63;
}

/* Home button */
.btn-pink-white {
  background-color: #ed1867 !important;
  color: #fff !important;
  border: none;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
}