/* Contact Page Specific Styles */

/* Ensure full dark background */
body {
  background: rgba(15, 15, 15, 0.95) !important;
  min-height: 100vh;
}

/* Contact Hero Section */
.contact-hero {
  height: 60vh !important;
  min-height: 400px !important;
  background-position: center -500px !important;
  background-size: cover !important;
}

.contact-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
  color: white;
  text-align: center;
}

.contact-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin: 0;
}

/* Mobile-only Header */
.mobile-only-header {
  display: none;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 20px; /* Increased padding for better touch targets */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.mobile-logo {
  text-align: center;
  margin: 15px 0;
}

.mobile-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

/* Active Navigation Link */
.nav a.active {
  color: #1a1a1a;
  font-weight: 500;
}

/* Contact Section with Smooth Gradient Fade */
.contact-section {
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 10%,
    rgba(0, 0, 0, 0.1) 20%,
    rgba(0, 0, 0, 0.2) 30%,
    rgba(0, 0, 0, 0.4) 40%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.8) 60%,
    rgba(0, 0, 0, 0.9) 70%,
    rgba(0, 0, 0, 0.95) 80%,
    #000000 100%
  ); /* Very smooth gradient fade from transparent to black */
  padding: 80px 40px 80px 40px; /* Much less top padding - only 80px */
  margin-top: -60px; /* Small overlap with hero */
  min-height: 100vh;
  position: relative;
  z-index: 2;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 48px; /* Match modal spacing */
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08); /* Soft border like modal */
  position: relative;
}

/* Add brand accent line like modal */
.contact-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px; /* Centered accent line */
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(26, 26, 26, 0.3) 50%, transparent 100%); /* Brand color accent */
}

.contact-header h1,
.contact-header h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700; /* Bolder like modal */
  color: white; /* White text for readability */
  letter-spacing: -0.02em; /* Tighter letter spacing like modal */
  margin: 0 0 20px 0;
  text-align: center;
}

.contact-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8); /* White text with transparency */
  max-width: 600px;
  margin: 0 auto 40px auto; /* Add bottom margin */
  line-height: 1.6;
  text-align: center;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Contact Form */
.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: white;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1a1a1a;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.2);
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: #0f0f0f;
  color: white;
}

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

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: #1a1a1a;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 16px;
}

.submit-btn:hover {
  background: #0d0d0d;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 26, 26, 0.3);
}

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

.submit-btn svg {
  transition: transform 0.3s ease;
}

.submit-btn:hover svg {
  transform: translateX(4px);
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.info-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #1a1a1a;
  border-radius: 12px;
  color: white;
  flex-shrink: 0;
}

.info-content h3 {
  font-size: 1.2rem;
  font-weight: 500;
  color: white;
  margin: 0 0 4px 0;
}

.info-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-section {
    padding: 80px 30px 60px 30px;
  }
  
  .contact-form-wrapper {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    display: none !important;
  }

  .mobile-only-header {
    display: block !important;
  }

  .contact-section {
    padding: 120px 20px 40px 20px; /* Increased top padding for better spacing */
    margin-top: -80px !important; /* Reduced negative margin for better positioning */
    background: linear-gradient(
      to bottom,
      transparent 0%,
      transparent 30%,
      rgba(0, 0, 0, 0.1) 40%,
      rgba(0, 0, 0, 0.2) 50%,
      rgba(0, 0, 0, 0.4) 60%,
      rgba(0, 0, 0, 0.6) 70%,
      rgba(0, 0, 0, 0.8) 80%,
      rgba(0, 0, 0, 0.9) 85%,
      rgba(0, 0, 0, 0.95) 90%,
      #000000 100%
    ); /* Adjusted gradient for better visibility */
  }
  
  .contact-header {
    margin-top: 120px; /* Much larger margin to move text significantly further down */
    margin-bottom: 40px; /* Increased gap between header text and form */
    padding-top: 50px; /* Much more padding for better spacing */
  }
  
  .contact-form-wrapper {
    padding: 24px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 14px 16px;
    font-size: 16px; /* Prevent zoom on iOS */
  }
  
  .submit-btn {
    padding: 14px 28px;
  }
  
  .info-card {
    padding: 20px;
  }
  
  .info-icon {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .contact-form-wrapper {
    padding: 20px;
  }
  
  .contact-content {
    gap: 30px;
  }
  
  .info-card {
    padding: 16px;
    gap: 16px;
  }
}

/* Privacy Policy and Disclaimer Pages - Simple Fade */
.privacy-content {
  max-width: 820px;
  margin: 0 auto;
  background: transparent; /* No background - let hero image show through */
  border-radius: 0;
  padding: 48px;
  border: none;
  box-shadow: none;
  position: relative;
  z-index: 5;
}

/* Remove shimmer effect for clean look */

.privacy-section {
  margin-bottom: 32px; /* Consistent spacing */
  background: transparent; /* Remove background since parent has modal styling */
  border-radius: 0; /* Remove border radius */
  padding: 0; /* Remove padding since parent handles it */
  border: none; /* Remove border */
}

.privacy-section h2 {
  color: white; /* White text for readability */
  font-size: 1.5rem;
  font-weight: 600; /* Bolder like modal */
  margin: 0 0 24px 0; /* More spacing like modal */
  letter-spacing: -0.01em;
}

.privacy-section p {
  color: rgba(255, 255, 255, 0.9); /* White text with slight transparency */
  line-height: 1.6;
  margin: 0 0 20px 0; /* More spacing like modal */
  font-size: 1rem;
}

.privacy-section ul {
  color: rgba(255, 255, 255, 0.9); /* White text with slight transparency */
  line-height: 1.6;
  margin: 20px 0;
  padding-left: 24px; /* More padding like modal */
}

.privacy-section li {
  margin-bottom: 8px;
}

.privacy-section strong {
  color: white;
}

/* Modal-Style Mobile Responsive */
@media (max-width: 768px) {
  /* Privacy content mobile - simple */
  .privacy-content {
    margin: 0 20px; /* Normal margins on mobile */
    padding: 32px 24px; /* Normal padding on mobile */
    max-width: none; /* Full width on mobile */
  }

  .contact-header::after {
    width: 80px; /* Smaller accent line on mobile */
  }

  .privacy-section {
    margin-bottom: 24px; /* Consistent spacing */
  }

  .privacy-section h2 {
    font-size: 1.3rem;
  }
}
