/* Main CSS - Non-critical styles */
.doctor-specialty {
  font-family: "Cormorant", serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--light-charcoal);
  margin-bottom: 60px;
  max-width: 90%;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: 0.7s;
}

.cta-button {
  position: relative;
  display: inline-block;
  padding: 13px 35px;
  background-color: transparent;
  color: var(--charcoal);
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  border: none;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: 0.9s;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid var(--copper);
  z-index: -2;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.cta-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--copper);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}

.cta-button:hover {
  color: var(--white);
}

.cta-button:hover::after {
  left: 0;
}

.cta-button:hover::before {
  opacity: 0;
}

.cta-button .btn-dots {
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  z-index: -3;
  pointer-events: none;
}

.cta-button .btn-dots::before,
.cta-button .btn-dots::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--copper);
  opacity: 0.7;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.cta-button .btn-dots::before {
  top: 0;
  left: 0;
}

.cta-button .btn-dots::after {
  bottom: 0;
  right: 0;
}

.cta-button:hover .btn-dots::before,
.cta-button:hover .btn-dots::after {
  opacity: 1;
}

.hero-image {
  width: 50%;
  height: 700px;
  position: relative;
  z-index: 3;
  opacity: 0;
  transform: translateX(50px);
  animation: fadeInRight 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: 0.5s;
  overflow: hidden;
}

.hero-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.hero-image:hover .hero-image-container img {
  transform: scale(1.05);
}

.specialization-tag {
  position: absolute;
  top: 50px;
  right: -30px;
  background-color: var(--white);
  padding: 30px 35px;
  z-index: 4;
  opacity: 0;
  transform: translateX(30px);
  animation: fadeInRight 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: 1.2s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.specialization-tag-title {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.specialization-tag-text {
  font-family: "Cormorant", serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--light-charcoal);
}

.about-section {
  padding: 150px 0;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.about-image {
  width: 45%;
  height: 650px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-content {
  width: 50%;
  padding-left: 8%;
  position: relative;
}

.subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--copper);
  margin-bottom: 20px;
  position: relative;
  padding-left: 60px;
}

.subtitle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 40px;
  height: 1px;
  background-color: var(--copper);
  transform: translateY(-50%);
}

.section-title {
  font-family: "Italiana", serif;
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 50px;
  line-height: 1.2;
  position: relative;
}

.section-title span {
  display: block;
  color: var(--copper);
}

.about-text {
  margin-bottom: 25px;
  font-size: 1.35rem;
  color: var(--light-charcoal);
  line-height: 1.8;
  font-weight: 300;
}

.locations-section {
  padding: 150px 0;
  background-color: var(--cream);
  position: relative;
}

.locations-header {
  text-align: center;
  margin-bottom: 100px;
}

.locations-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.location-card {
  width: 48%;
  background-color: var(--white);
  padding: 60px 50px;
  margin-bottom: 40px;
  transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.location-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--copper);
  transition: height 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.location-card:hover::before {
  height: 100%;
}

.location-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.location-name {
  font-family: "Italiana", serif;
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 30px;
  color: var(--charcoal);
}

.location-address {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: var(--charcoal);
  font-weight: 300;
  position: relative;
  padding-left: 30px;
}

.location-address::before {
  content: "\f3c5";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--copper);
  font-size: 1rem;
}

.location-transport {
  margin-bottom: 35px;
}

.transport-title {
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 15px;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  padding-left: 30px;
}

.transport-title::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--copper);
  font-size: 1rem;
}

.transport-title.metro::before {
  content: "\f238";
}

.transport-title.parking::before {
  content: "\f540";
}

.transport-title.info::before {
  content: "\f129";
}

.transport-item {
  margin-bottom: 10px;
  color: var(--light-charcoal);
  font-size: 1.1rem;
  font-weight: 300;
  padding-left: 30px;
}

.location-cta {
  margin-top: 40px;
}

.cta-appointment {
  position: relative;
  display: inline-block;
  padding: 15px 40px;
  background-color: transparent;
  color: var(--charcoal);
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  border: none;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.cta-appointment::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid var(--copper);
  z-index: -2;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.cta-appointment::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--copper);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}

.cta-appointment:hover {
  color: var(--white);
}

.cta-appointment:hover::after {
  left: 0;
}

.cta-appointment:hover::before {
  opacity: 0;
}

.appointment-dots {
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  z-index: -3;
  pointer-events: none;
}

.appointment-dots .dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--copper);
  opacity: 0.7;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.appointment-dots .dot:nth-child(1) {
  top: 0;
  left: 0;
}

.appointment-dots .dot:nth-child(2) {
  top: 0;
  right: 0;
}

.appointment-dots .dot:nth-child(3) {
  bottom: 0;
  left: 0;
}

.appointment-dots .dot:nth-child(4) {
  bottom: 0;
  right: 0;
}

.cta-appointment:hover .appointment-dots .dot {
  opacity: 1;
}

.contact-section {
  padding: 150px 0;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.contact-info {
  width: 45%;
}

.contact-detail {
  margin-bottom: 30px;
}

.contact-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  position: relative;
  padding-left: 30px;
}

.contact-label::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--copper);
  font-size: 1rem;
}

.contact-label.phone::before {
  content: "\f095";
}

.contact-label.hours::before {
  content: "\f017";
}

.contact-label.emergency::before {
  content: "\f06a";
}

.contact-label.info::before {
  content: "\f05a";
}

.contact-value {
  font-size: 1.2rem;
  color: var(--light-charcoal);
  font-weight: 300;
  padding-left: 30px;
}

.contact-form {
  width: 50%;
  padding: 60px;
  background-color: var(--cream);
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.contact-form::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--sand);
  z-index: -1;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.form-input {
  width: 100%;
  padding: 15px 0;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--sand);
  font-family: "Cormorant", serif;
  font-size: 1.1rem;
  color: var(--charcoal);
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--copper);
}

.form-submit {
  position: relative;
  display: inline-block;
  padding: 15px 40px;
  background-color: transparent;
  color: var(--charcoal);
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  border: none;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  margin-top: 20px;
}

.form-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid var(--copper);
  z-index: -2;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.form-submit::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--copper);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}

.form-submit:hover {
  color: var(--white);
}

.form-submit:hover::after {
  left: 0;
}

.form-submit:hover::before {
  opacity: 0;
}

.submit-dots {
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  z-index: -3;
  pointer-events: none;
}

.submit-dots .dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--copper);
  opacity: 0.7;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.submit-dots .dot:nth-child(1) {
  top: 0;
  left: 0;
}

.submit-dots .dot:nth-child(2) {
  top: 0;
  right: 0;
}

.submit-dots .dot:nth-child(3) {
  bottom: 0;
  left: 0;
}

.submit-dots .dot:nth-child(4) {
  bottom: 0;
  right: 0;
}

.form-submit:hover .submit-dots .dot {
  opacity: 1;
}

.schedule-badge {
  position: absolute;
  top: 33%;
  right: 6%;
  width: 190px;
  height: 190px;
  background-color: #ece7da;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0;
  transform: rotate(8deg);
  z-index: 10;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.schedule-badge::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px dashed rgba(161, 141, 111, 0.2);
  border-radius: 50%;
  top: 0;
  left: 0;
}

.schedule-badge::after {
  content: "";
  position: absolute;
  width: 80%;
  height: 80%;
  border: 1px dashed rgba(161, 141, 111, 0.25);
  border-radius: 50%;
  top: 10%;
  left: 10%;
}

.schedule-badge-inner {
  position: relative;
  width: 90%;
  height: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.schedule-badge:hover {
  transform: rotate(8deg) scale(1.03);
}

.schedule-text {
  font-family: "Cormorant", serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: #3a3a3a;
  margin-bottom: 10px;
}

.schedule-icon {
  color: #a58577;
  font-size: 14px;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.schedule-badge:hover .schedule-icon {
  transform: translateX(5px);
}

footer {
  background-color: var(--cream);
  padding: 40px 0;
  text-align: center;
  position: relative;
}

.copyright {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--light-charcoal);
  letter-spacing: 0.1em;
}

.decorative-line {
  position: absolute;
  width: 1px;
  height: 150px;
  background-color: var(--copper);
  opacity: 0.3;
}

.decorative-line.top-left {
  top: 80px;
  left: 10%;
  height: 350px;
}

.decorative-line.top-right {
  top: 50px;
  right: 15%;
}

.decorative-line.bottom-left {
  bottom: 50px;
  left: 20%;
}

.decorative-line.bottom-right {
  bottom: 80px;
  right: 10%;
  height: 250px;
}

.decorative-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--sand);
  opacity: 0.4;
}

.decorative-circle.large {
  width: 400px;
  height: 400px;
}

.decorative-circle.medium {
  width: 200px;
  height: 200px;
}

.decorative-circle.small {
  width: 100px;
  height: 100px;
}

.decorative-circle.about-top-right {
  top: -150px;
  right: -150px;
}

.decorative-circle.about-bottom-left {
  bottom: -100px;
  left: 10%;
}

.decorative-circle.contact-top-left {
  top: 100px;
  left: -50px;
}

.decorative-circle.contact-bottom-right {
  bottom: -150px;
  right: 5%;
}

.locations-highlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background-color: var(--sand);
  opacity: 0.1;
  z-index: 0;
}

.card-accent {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--light-beige);
  opacity: 0.6;
  z-index: 0;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.accent-1 {
  top: 20px;
  right: 20px;
}

.accent-2 {
  bottom: 20px;
  left: 20px;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.parallax-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed var(--sand);
  opacity: 0.2;
  z-index: 0;
}

.parallax-circle.xl {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -200px;
}

.parallax-circle.lg {
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: -150px;
}

.parallax-circle.md {
  width: 250px;
  height: 250px;
  top: 30%;
  right: 10%;
}

.parallax-circle.sm {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 20%;
}

@media (max-width: 768px) {
  .parallax-circle.xl,
  .parallax-circle.lg,
  .parallax-circle.md,
  .parallax-circle.sm {
    width: 50%;
    height: 0;
    padding-bottom: 50%;
  }
}

.status-message {
  display: none;
  padding: 15px;
  margin-top: 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.status-message.success {
  color: #2e7d32;
  background-color: rgba(46, 125, 50, 0.1);
  border-left: 3px solid #2e7d32;
}

.status-message.error {
  color: #c62828;
  background-color: rgba(198, 40, 40, 0.1);
  border-left: 3px solid #c62828;
}

.form-loading {
  display: none;
  position: relative;
  margin-top: 20px;
  text-align: center;
}

.loading-dots {
  display: inline-block;
}

.loading-dots .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 4px;
  border-radius: 50%;
  background-color: var(--copper);
  opacity: 0.6;
  animation: loadingDot 1.4s infinite ease-in-out both;
}

.loading-dots .dot:nth-child(1) {
  animation-delay: -0.32s;
}

.loading-dots .dot:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes loadingDot {
  0%,
  80%,
  100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0% {
    transform: rotate(10deg) translateY(0);
  }
  50% {
    transform: rotate(10deg) translateY(-10px);
  }
  100% {
    transform: rotate(10deg) translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.privacy-notice {
  margin-top: 25px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  color: var(--light-charcoal);
  line-height: 1.6;
  padding: 15px;
  background-color: rgba(213, 201, 181, 0.1);
  border-left: 2px solid var(--sand);
}

.privacy-link {
  color: var(--copper);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.privacy-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--copper);
  transition: width 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.privacy-link:hover::after {
  width: 100%;
}

.footer-links {
  margin-top: 15px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
}

.footer-link {
  color: var(--light-charcoal);
  text-decoration: none;
  transition: color 0.3s ease;
  letter-spacing: 0.05em;
}

.footer-link:hover {
  color: var(--copper);
}

.footer-separator {
  margin: 0 10px;
  color: var(--sand);
}

@media (max-width: 1200px) {
  .doctor-name {
    font-size: 4.5rem;
  }

  .doctor-name span {
    font-size: 5.5rem;
  }

  .hero-image {
    height: 600px;
  }
}

@media (max-width: 992px) {
  .hero::before {
    width: 100%;
    height: 50%;
    top: 50%;
  }

  .hero-container {
    flex-direction: column;
  }

  .hero-content,
  .hero-image {
    width: 100%;
  }

  .hero-content {
    margin-bottom: 60px;
    padding-right: 0;
  }

  .hero-image {
    height: 500px;
  }

  .about-container {
    flex-direction: column;
  }

  .about-image,
  .about-content {
    width: 100%;
  }

  .about-image {
    height: 500px;
    margin-bottom: 60px;
  }

  .about-content {
    padding-left: 0;
  }

  .location-card {
    width: 100%;
    margin-bottom: 30px;
  }

  .contact-container {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    width: 100%;
  }

  .contact-info {
    margin-bottom: 60px;
  }

  .schedule-badge {
    right: 5%;
  }
}

@media (max-width: 768px) {
  .nav-menu a {
    font-size: 1rem;
  }

  .doctor-name {
    font-size: 3.5rem;
  }

  .doctor-name span {
    font-size: 4.5rem;
  }

  .specialization-tag {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 20px;
    width: auto;
    max-width: 100%;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateX(0);
    animation: fadeInUp 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    animation-delay: 1.2s;
  }

  .hero-image-container {
    margin-bottom: 20px;
    max-width: 100%;
  }

  .hero-image {
    max-width: 100%;
  }

  .section-title {
    font-size: 3rem;
  }

  .contact-form {
    padding: 40px 30px;
  }

  .contact-form::before {
    display: none;
  }

  .schedule-badge {
    width: 120px;
    height: 120px;
    right: 5%;
  }

  .decorative-line,
  .decorative-circle {
    display: none;
  }

  .hero::before {
    width: 100%;
  }

  .location-card {
    padding: 40px 25px;
  }

  .location-name {
    font-size: 2rem;
  }

  .about-text {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero-image {
    height: 400px;
  }

  .doctor-name {
    font-size: 3rem;
  }

  .doctor-name span {
    font-size: 3.8rem;
  }

  .specialization {
    font-size: 0.8rem;
    padding-left: 40px;
  }

  .specialization::before {
    width: 30px;
  }

  .schedule-badge {
    width: 100px;
    height: 100px;
    right: 5%;
  }

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

  .subtitle {
    padding-left: 40px;
  }

  .subtitle::before {
    width: 30px;
  }

  .section-title {
    font-size: 2.5rem;
  }
}
