/* Services Section Styles */
.services {
  padding-top: 50px;
  padding-bottom: 200px;
  background-color: #fff;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service__card {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.service__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
}

.service__title {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.service__description {
  line-height: 1.6;
  color: var(--text-color);
}

/* Footer Styles */
.footer {
  background-color: #333;
  color: #fff;
  padding: 60px 0 20px;
  position: relative;
  width: 100%;
  display: block;
  clear: both;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer__logo {
  margin-bottom: 20px;
}

.footer__logo img {
  max-width: 150px;
  height: auto;
}

.footer__description {
  line-height: 1.6;
  margin-bottom: 20px;
  color: #ccc;
}

.footer__title {
  font-size: 18px;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
}

.footer__title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: var(--primary-color);
}

.footer__contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: #ccc;
}

.footer__icon {
  margin-right: 10px;
  color: var(--primary-color);
}

.footer__social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.footer__social-link:hover {
  background-color: var(--primary-color);
}

.footer__social-icon {
  color: #fff;
}

.footer__bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bottom p {
  margin: 0;
  color: #ccc;
}

/* About Section Styles */
.about {
  padding-top: 50px;
  padding-bottom: 200px;
  background-color: #f9f9f9;
}

.about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about__image {
  border-radius: 8px;
  overflow: hidden;
}

.about__image img {
  width: 100%;
  height: auto;
  display: block;
}

.about__content {
  padding: 20px;
}

.about__title {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.about__text {
  margin-bottom: 20px;
  line-height: 1.8;
}

.about__list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.about__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.about__list-item:before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

/* Contact Section Styles */
.contact {
  padding-top: 50px;
  padding-bottom: 200px;
  background-color: #fff;
}

.contact__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact__info {
  padding: 20px;
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact__info-icon {
  width: 50px;
  height: 50px;
  margin-right: 20px;
  color: var(--primary-color);
}

.contact__info-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.contact__info-content p {
  line-height: 1.6;
  color: var(--text-color);
}

.contact__form {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__button {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .about__container,
  .contact__container {
    grid-template-columns: 1fr;
  }
  
  .about__image {
    order: 2;
  }
  
  .about__content {
    order: 1;
  }
}

/* Fix for footer visibility */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.booking {
  margin-bottom: 60px;
}

/* Make sure the calendar modal doesn't interfere with footer */
.calendar-modal {
  z-index: 1000;
}