/* Book Appointment Section */

.book-appointment-section {
  background: #c2ae8f;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.book-appointment-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Image */
.book-appointment-image-left {
  position: relative;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
}

.book-appointment-image-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 80px;
  height: 80px;
  background: rgba(139, 115, 85, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  color: white;
}

.image-badge svg {
  width: 100%;
  height: 100%;
}

/* Center Content */
.book-appointment-content {
  text-align: center;
  color: black;
}

.book-appointment-content h2 {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  font-weight: 400;
  margin: 0 0 30px 0;
  line-height: 1.2;
  color: black;
}

.book-appointment-content p {
  font-family: 'Figtree', sans-serif;
  font-size: 1rem;
  color: black;
  margin: 0 0 40px 0;
  line-height: 1.6;
}

.btn-appointment {
  display: inline-block;
  padding: 14px 32px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 26px;
  font-family: 'Figtree', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.btn-appointment:hover {
  background: transparent;
  color: white;
}

/* Right Image */
.book-appointment-image-right {
  height: auto;
  border-radius: 20px;
  overflow: hidden;
}

.book-appointment-image-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 1024px) {
  .book-appointment-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .book-appointment-content h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .book-appointment-section {
    padding: 40px 20px;
  }

  .book-appointment-wrapper {
    gap: 30px;
  }


  .book-appointment-content h2 {
    font-size: 2rem;
  }

  .book-appointment-content p {
    font-size: 0.9rem;
  }

  .image-badge {
    width: 60px;
    height: 60px;
    bottom: 15px;
    left: 15px;
  }
}

@media (max-width: 480px) {
  .book-appointment-section {
    padding: 40px 0;
  }

  .book-appointment-content h2 {
    font-size: 1.5rem;
  }

  .book-appointment-content p {
    font-size: 0.85rem;
    margin-bottom: 30px;
  }

  .btn-appointment {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}
