/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: #0b0f19;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Video Header Section */
.video-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Smooth fade-to-black gradient overlay at the bottom of the video */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(11, 15, 25, 0.3) 0%, rgba(11, 15, 25, 0.8) 100%),
              linear-gradient(180deg, rgba(11, 15, 25, 0) 50%, rgba(11, 15, 25, 0.95) 100%);
  z-index: 1;
}

/* Content Section Floating Over Video */
.content-wrapper {
  width: 100%;
  min-height: 100vh;
  padding: 2rem 1.5rem 4rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 2;
}

/* Premium Card */
.glass-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 3rem 2.25rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: cardFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Logo Styling */
.logo-area {
  margin-bottom: 2rem;
}

.logo-img {
  max-width: 200px;
  height: auto;
  display: inline-block;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

/* Info Section */
.info-section {
  margin-bottom: 2rem;
}

.maintenance-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.maintenance-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.6;
}

/* Divider Line */
.divider {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0) 0%, 
    rgba(255, 255, 255, 0.12) 50%, 
    rgba(255, 255, 255, 0) 100%
  );
  margin: 2rem 0;
}

/* Contact Section */
.contact-section {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.contact-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #94a3b8;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
}

.form-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
}

.form-input,
.form-textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #ffffff;
  padding: 0.8rem 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  width: 100%;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

.form-textarea {
  resize: vertical;
  min-height: 90px;
}

.submit-btn {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  border: none;
  border-radius: 10px;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
  text-align: center;
  margin-top: 0.25rem;
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45);
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Location Footer */
.location-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: 0.85rem;
  margin-top: 2rem;
}

.contact-icon {
  width: 1.1rem;
  height: 1.1rem;
  color: #f59e0b;
  opacity: 0.85;
  flex-shrink: 0;
}

/* Animations */
@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .content-wrapper {
    align-items: center; /* Center vertically on tablets and mobile to avoid browser bars */
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .content-wrapper {
    align-items: center;
    padding: 1rem;
  }

  .glass-card {
    padding: 1.5rem 1.25rem;
    border-radius: 18px;
  }
  
  .logo-area {
    margin-bottom: 0.75rem;
  }
  
  .logo-img {
    max-width: 140px;
  }
  
  .info-section {
    margin-bottom: 0.75rem;
  }
  
  .maintenance-title {
    font-size: 1.15rem;
    margin-bottom: 0.2rem;
  }
  
  .maintenance-text {
    font-size: 0.8rem;
    line-height: 1.4;
  }
  
  .divider {
    margin: 1rem 0;
  }
  
  .contact-heading {
    margin-bottom: 0.6rem;
    font-size: 0.75rem;
  }
  
  .contact-form {
    gap: 0.75rem;
  }
  
  .form-group {
    gap: 0.2rem;
  }
  
  .form-label {
    font-size: 0.65rem;
  }
  
  .form-input,
  .form-textarea {
    padding: 0.55rem 0.75rem;
    font-size: 0.85rem;
    border-radius: 8px;
  }
  
  .form-textarea {
    min-height: 55px;
  }
  
  .submit-btn {
    padding: 0.8rem;
    font-size: 0.9rem;
    border-radius: 8px;
    margin-top: 0.1rem;
  }
  
  .location-info {
    margin-top: 1rem;
    font-size: 0.75rem;
  }
}
