.hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  max-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 1 !important;
  visibility: visible !important;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #ffffff;
  max-width: 90%;
  padding: 0 1rem;
  animation: heroFadeIn 1.2s ease-out;
}

.hero-text {
  margin-bottom: 2.5rem;
  animation: heroTextSlide 1s ease-out 0.3s both;
}

.hero-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #ffffff;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 0;
  color: #ffffff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  animation: heroCTASlide 1s ease-out 0.9s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #ec4899 0%, #db2777 50%, #a855f7 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(236, 72, 153, 0.5);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #db2777 0%, #c026d3 50%, #9333ea 100%);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 30px rgba(236, 72, 153, 0.6);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-text {
  position: relative;
  z-index: 1;
}

.btn-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.btn-primary:hover .btn-icon {
  transform: translateX(3px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: heroScrollBounce 2s infinite ease-in-out;
}

.scroll-down-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.scroll-down-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.scroll-down-btn svg {
  width: 24px;
  height: 24px;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroLogoSlide {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroTextSlide {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroCTASlide {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroScrollBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 100vh;
    padding-top: 80px;
  }

  .hero-logo {
    height: 60px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn-primary {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }

  .hero-scroll-indicator {
    bottom: 1.5rem;
  }

  .scroll-down-btn {
    width: 45px;
    height: 45px;
  }

  .scroll-down-btn svg {
    width: 20px;
    height: 20px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero-content {
    max-width: 80%;
  }

  .hero-logo {
    height: 90px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    max-width: 70%;
  }

  .hero-logo {
    height: 100px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .btn-primary {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
  }
}

@media (min-width: 1200px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 1.4rem;
  }
}

/* ===== BOOKING MODAL ===== */
.booking-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.booking-modal.hidden {
  opacity: 0;
  pointer-events: none;
}

.booking-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}

.booking-modal-content {
  position: relative;
  background: white;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  animation: modalSlideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1;
}

.booking-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border: none;
  background: #f3f4f6;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #6b7280;
}

.booking-modal-close:hover {
  background: #e5e7eb;
  color: #1f2937;
  transform: rotate(90deg) scale(1.1);
}

.booking-modal-close svg {
  width: 20px;
  height: 20px;
}

.booking-modal-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
  text-align: center;
}

.booking-modal-subtitle {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 2rem;
  text-align: center;
}

.booking-modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-btn {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.booking-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2));
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.booking-btn:hover::before {
  transform: translateX(0);
}

.booking-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.booking-btn:active {
  transform: translateY(-2px) scale(1);
}

.booking-btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.booking-btn-whatsapp:hover {
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.4);
}

.booking-btn-phone {
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  color: white !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.booking-btn-phone:hover {
  color: white !important;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.booking-btn-phone .booking-btn-title,
.booking-btn-phone .booking-btn-desc {
  color: white !important;
}

.booking-btn-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.booking-btn:hover .booking-btn-icon {
  transform: scale(1.15) rotate(5deg);
}

.booking-btn-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
  position: relative;
  z-index: 1;
}

.booking-btn-title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.2;
}

.booking-btn-desc {
  font-size: 0.875rem;
  opacity: 0.9;
  font-weight: 400;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 480px) {
  .booking-modal-content {
    padding: 2rem 1.5rem;
  }

  .booking-modal-title {
    font-size: 1.5rem;
  }

  .booking-btn {
    padding: 1rem 1.25rem;
  }

  .booking-btn-icon {
    width: 28px;
    height: 28px;
  }

  .booking-btn-title {
    font-size: 1rem;
  }

  .booking-btn-desc {
    font-size: 0.8rem;
  }
}