/* ==============================================
   VIP REQUEST PAGE STYLING
   ============================================== */

/* VIP Page Header */
.vip-page-header {
  text-align: center;
  padding: 4rem 2rem 3rem;
  max-width: 900px;
  margin: 0 auto;
  background-color: #fff;
}

.vip-page-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: #000;
  margin: 0 0 1rem;
  letter-spacing: 0.5px;
}

.vip-page-header .subtitle {
  font-size: 1.3rem;
  color: #555;
  font-weight: 300;
  margin: 0;
  line-height: 1.6;
}

/* VIP Intro Section */
.vip-intro {
  padding: 3rem 2rem 4rem;
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.vip-intro-content {
  max-width: 1100px;
  margin: 0 auto;
}

.vip-intro-content h2 {
  font-size: 2rem;
  font-weight: 500;
  color: #000;
  margin: 0 0 1.5rem;
  text-align: center;
  letter-spacing: 0;
}

.vip-intro-content > p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
  font-weight: 300;
  margin: 0 auto 3rem;
  max-width: 800px;
  text-align: center;
}

/* VIP Features Grid */
.vip-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0 4rem;
}

.vip-feature {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.vip-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #f0f0f0;
}

.vip-feature h3 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #000;
  margin: 0 0 0.8rem;
  letter-spacing: 0;
}

.vip-feature p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-weight: 300;
}

/* VIP Details Section */
.vip-details {
  background: #fff;
  padding: 3rem 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  margin-top: 3rem;
}

.vip-details h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #000;
  margin: 0 0 1.5rem;
  letter-spacing: 0;
}

.vip-details ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
}

.vip-details ul li {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.8rem;
  font-weight: 300;
}

.vip-details ul li::before {

  position: absolute;
  left: 0;
  color: #000;
  font-weight: 600;
  font-size: 1.2rem;
}

.vip-details ul li strong {
  font-weight: 500;
  color: #000;
}

/* Important Note Box */
.important-note {
  background: #fffbf0;
  border-left: 4px solid #f4b942;
  padding: 1.5rem 2rem;
  margin-top: 2rem;
  border-radius: 0 4px 4px 0;
}

.important-note h4 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #000;
  margin: 0 0 1rem;
  letter-spacing: 0;
}

.important-note p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin: 0;
  font-weight: 300;
}

.important-note strong {
  font-weight: 500;
  color: #000;
}

/* VIP Form Section */
.vip-form-section {
  padding: 4rem 2rem;
  background-color: #fff;
}

.vip-form-container {
  max-width: 700px;
  margin: 0 auto;
}

.vip-form-container h2 {
  font-size: 2rem;
  font-weight: 500;
  color: #000;
  margin: 0 0 1rem;
  text-align: center;
  letter-spacing: 0;
}

.form-intro {
  font-size: 1.05rem;
  color: #555;
  text-align: center;
  margin: 0 0 3rem;
  font-weight: 300;
  line-height: 1.6;
}

/* Form Styling */
.vip-form {
  background: #fafafa;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.form-group {
  margin-bottom: 1.8rem;
}

.form-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: #000;
  margin-bottom: 0.5rem;
  letter-spacing: 0.3px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
  background-color: #fff;
  color: #000;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #000;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

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

.form-group small {
  display: block;
  font-size: 0.85rem;
  color: #888;
  margin-top: 0.4rem;
  font-weight: 300;
}

/* Submit Button */
.submit-button {
  width: 100%;
  padding: 1rem 2rem;
  background-color: #000;
  color: #fff;
  border: 2px solid #000;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 1rem;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
}

.submit-button:hover {
  background-color: #fff;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: #888;
  margin-top: 1rem;
  font-weight: 300;
}

/* VIP CTA Section */
.vip-cta {
  background-color: #fafafa;
  padding: 3rem 2rem;
  text-align: center;
}

.vip-cta h3 {
  font-size: 1.8rem;
  font-weight: 500;
  color: #000;
  margin: 0 0 0.8rem;
  letter-spacing: 0;
}

.vip-cta p {
  font-size: 1.05rem;
  color: #555;
  margin: 0 0 2rem;
  font-weight: 300;
}

.cta-contact {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-link {
  display: inline-block;
  padding: 0.9rem 2rem;
  background-color: #fff;
  color: #000;
  border: 2px solid #000;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: all 0.25s ease;
}

.contact-link:hover {
  background-color: #000;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
  .vip-page-header {
    padding: 3rem 1.5rem 2rem;
  }

  .vip-page-header h1 {
    font-size: 2rem;
  }

  .vip-page-header .subtitle {
    font-size: 1.1rem;
  }

  .vip-intro {
    padding: 2.5rem 1.5rem 3rem;
  }

  .vip-intro-content h2 {
    font-size: 1.75rem;
  }

  .vip-intro-content > p {
    font-size: 1rem;
  }

  .vip-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .vip-details {
    padding: 2rem 1.5rem;
  }

  .vip-details h3 {
    font-size: 1.3rem;
  }

  .vip-details ul li {
    font-size: 1rem;
  }

  .vip-form-section {
    padding: 3rem 1.5rem;
  }

  .vip-form-container h2 {
    font-size: 1.75rem;
  }

  .vip-form {
    padding: 2rem 1.5rem;
  }

  .cta-contact {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .contact-link {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 600px) {
  .vip-page-header {
    padding: 2.5rem 1.5rem 1.5rem;
  }

  .vip-page-header h1 {
    font-size: 1.75rem;
  }

  .vip-page-header .subtitle {
    font-size: 1rem;
  }

  .vip-intro-content h2 {
    font-size: 1.5rem;
  }

  .feature-icon {
    font-size: 2.5rem;
  }

  .vip-feature h3 {
    font-size: 1.1rem;
  }

  .vip-feature p {
    font-size: 0.9rem;
  }

  .vip-form {
    padding: 1.5rem 1rem;
  }

  .vip-cta h3 {
    font-size: 1.5rem;
  }
}

/* Animation on Load */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vip-feature {
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
}

.vip-feature:nth-child(1) { animation-delay: 0.1s; }
.vip-feature:nth-child(2) { animation-delay: 0.2s; }
.vip-feature:nth-child(3) { animation-delay: 0.3s; }
.vip-feature:nth-child(4) { animation-delay: 0.4s; }
.vip-feature:nth-child(5) { animation-delay: 0.5s; }
.vip-feature:nth-child(6) { animation-delay: 0.6s; }

@media (prefers-reduced-motion: reduce) {
  .vip-feature {
    animation: none;
    opacity: 1;
  }
}

/* ======================
   THANK YOU OVERLAY
   ====================== */

/* Thank You Overlay */
.thankyou-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.6s ease-in-out;
}

/* Thank You Card */
.thankyou-card {
  background: #fff;
  color: #000;
  text-align: center;
  border-radius: 16px;
  padding: 50px 30px;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  animation: slideUp 0.8s ease;
}

.thankyou-logo {
  width: 80px;
  opacity: 0.9;
  margin-bottom: 20px;
}

.thankyou-card h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 15px;
  color: #000;
  letter-spacing: 0;
}

.thankyou-card p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
  font-weight: 300;
}

.thankyou-btn {
  background-color: #000;
  color: #fff;
  text-decoration: none;
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  display: inline-block;
  transition: all 0.25s ease;
  border: 2px solid #000;
  font-family: 'Montserrat', sans-serif;
}

.thankyou-btn:hover {
  background-color: #fff;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

@keyframes slideUp {
  from { 
    transform: translateY(30px); 
    opacity: 0; 
  }
  to { 
    transform: translateY(0); 
    opacity: 1; 
  }
}