.u-section-1 {
  background-image: none;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  position: relative;
  overflow: visible;
  background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #c084fc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.u-section-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.u-section-1 .u-shape-1 {
  height: 100%;
  margin-top: 0;
  margin-bottom: 0;
  background-image: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 50%, #a855f7 100%);
  opacity: 0.85;
  animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 50%, #a855f7 100%);
  }
  50% {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #7c3aed 100%);
  }
}

.u-section-1 .u-container-layout-1 {
  padding: 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: visible;
  transition: all 0.4s ease;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.u-section-1 .u-container-layout-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.u-section-1 .u-container-layout-1:hover::before {
  left: 100%;
}

.u-section-1 .u-container-layout-1:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.u-section-1 .u-text-1 {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #7c3aed, #8b5cf6, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 15px 0;
  text-align: center;
  position: relative;
  animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 5px rgba(124, 58, 237, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 15px rgba(124, 58, 237, 0.6));
  }
}

.u-section-1 .u-text-1::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #7c3aed, #8b5cf6, #a855f7);
  border-radius: 2px;
  animation: underlineExpand 2s ease-in-out infinite;
}

@keyframes underlineExpand {
  0%,
  100% {
    width: 80px;
  }
  50% {
    width: 120px;
  }
}

.u-section-1 .u-text-2 {
  letter-spacing: 0.8px;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #2c3e50;
  margin: 0 0 20px 0;
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.booking-container {
  position: relative;
  width: 100%;
  min-height: 80vh;
  margin: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  background: #ffffff;
  border: none;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.booking-container iframe {
  display: block;
  width: 100%;
  height: 800px;
  border: none;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.booking-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(139, 92, 246, 0.3);
}

/* Loading state for ZBook widget - overridden by enhanced version below */

.booking-container #zbook-here {
  min-height: 80vh;
  width: 100%;
  border-radius: 0;
  overflow: visible;
  flex: 1;
  background: #ffffff;
}

/* Hide loading message when ZBook loads */
.booking-container:has(#zbook-here > *)::before {
  display: none;
}

/* Responsive design */
@media (max-width: 1199px) {
  .u-section-1 {
    min-height: 100vh;
    padding: 0;
  }

  .u-section-1 .u-container-layout-1 {
    padding: 15px;
    width: 100%;
    min-height: 100vh;
  }

  .u-section-1 .u-text-1 {
    font-size: 2.2rem;
    margin-bottom: 12px;
  }

  .u-section-1 .u-text-2 {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .booking-container #zbook-here {
    min-height: 70vh;
  }
}

@media (max-width: 991px) {
  .u-section-1 {
    min-height: 100vh;
    padding: 0;
  }

  .u-section-1 .u-container-layout-1 {
    padding: 12px;
    width: 100%;
    min-height: 100vh;
  }

  .u-section-1 .u-text-1 {
    font-size: 2rem;
    margin-bottom: 14px;
  }

  .u-section-1 .u-text-2 {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }

  .booking-container #zbook-here {
    min-height: 70vh;
  }
}

@media (max-width: 767px) {
  .u-section-1 {
    min-height: 100vh;
    padding: 0;
  }

  .u-section-1 .u-container-layout-1 {
    padding: 10px;
    width: 100%;
    min-height: 100vh;
  }

  .u-section-1 .u-text-1 {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }

  .u-section-1 .u-text-2 {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  .booking-container #zbook-here {
    min-height: 70vh;
  }
}

@media (max-width: 575px) {
  .u-section-1 {
    min-height: 100vh;
    padding: 0;
  }

  .u-section-1 .u-container-layout-1 {
    padding: 8px;
    width: 100%;
    min-height: 100vh;
  }

  .u-section-1 .u-text-1 {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }

  .u-section-1 .u-text-2 {
    font-size: 0.85rem;
    margin-bottom: 8px;
  }

  .booking-container #zbook-here {
    min-height: 70vh;
  }
}

/* Full screen optimization */
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
}

html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
}

/* Hide unnecessary sections for full screen booking */
.u-section-2,
.u-section-3 {
  display: none;
}

/* Ensure header doesn't interfere with full screen */
.u-header {
  position: relative;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

/* Optimize for full screen experience */
.u-section-1 {
  margin-top: 0;
  top: 0;
}

/* Enhanced loading state */
.booking-container::before {
  content: "🔄 Loading booking system...";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #8b5cf6;
  font-size: 1.2rem;
  font-weight: 600;
  z-index: 1;
  opacity: 0.9;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

/* Smooth transitions */
* {
  transition: all 0.3s ease;
}

/* Enhanced hover effects - disabled for full screen */
.booking-container:hover {
  transform: none;
  box-shadow: none;
}

/* Better focus states for accessibility */
.booking-container:focus-within {
  outline: 3px solid rgba(139, 92, 246, 0.5);
  outline-offset: 5px;
}
