/* Mobile Contact Page Specific Styles */

/* Mobile display handled by mobile-nav.css */

@media (max-width: 768px) {
  
  .desktop-only {
    display: none !important;
  }
  /* Contact page mobile layout - single screen */
  body[data-page="contact"] .coming-soon-section {
    display: none !important;
  }
  
  /* Make contact section the main content */
  body[data-page="contact"] .contact-section {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background: white;
    padding: 40px 20px;
    margin: 0;
    border: none;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
  }
  
  body[data-page="contact"] .contact-section .container {
    padding: 0;
    width: 100%;
    max-width: 400px;
  }
  
  body[data-page="contact"] .contact-section h2 {
    display: none !important;
  }
  
  body[data-page="contact"] .contact-content {
    width: 100%;
  }
  
  body[data-page="contact"] .contact-info {
    width: 100%;
  }
  
  body[data-page="contact"] .contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  body[data-page="contact"] .contact-item {
    text-align: center;
    padding: 16px;
    width: 100%;
  }
  
  body[data-page="contact"] .contact-label {
    display: block;
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  body[data-page="contact"] .contact-value {
    display: block;
    font-size: 20px;
    color: #324e8a;
    font-weight: 700;
    word-break: break-word;
  }
  
  body[data-page="contact"] .footer-bottom {
    display: none;
  }
  
  /* Mobile nav handled by mobile-nav.css */
  
  /* New mobile contact form styles */
  body[data-page="contact"] .coming-soon-section {
    display: block !important;
    position: relative;
    background: white;
    min-height: calc(100vh - 60px);
    margin-top: 0;
    padding: 20px;
  }
  
  body[data-page="contact"] .contact-page-title {
    font-size: 28px;
    color: #324e8a;
    font-weight: 700;
    margin: 0 0 30px 0;
    text-align: center;
    font-family: 'Poppins', sans-serif;
  }
  
  .mobile-contact-content {
    padding: 0 20px;
  }
  
  .mobile-questions-section {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .mobile-questions-section h2 {
    font-size: 24px;
    color: #324e8a;
    margin-bottom: 20px;
    font-weight: 600;
  }
  
  .mobile-faq-link {
    display: inline-block;
    background-color: #324e8a;
    color: white;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
  }
  
  .mobile-faq-link:active {
    background-color: #2a4275;
    transform: scale(0.98);
  }
  
  .mobile-contact-form {
    margin-bottom: 40px;
  }
  
  .mobile-contact-form .form-group {
    margin-bottom: 20px;
  }
  
  .mobile-contact-form label {
    display: block;
    color: #324e8a;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .mobile-contact-form input,
  .mobile-contact-form select,
  .mobile-contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
    background: white;
    color: #333;
  }
  
  .mobile-contact-form input:focus,
  .mobile-contact-form select:focus,
  .mobile-contact-form textarea:focus {
    outline: none;
    border-color: #324e8a;
  }
  
  .mobile-contact-form textarea {
    min-height: 100px;
    resize: vertical;
  }
  
  .mobile-contact-form .form-submit-btn {
    width: 100%;
    background: #324e8a;
    color: white;
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
  }
  
  .mobile-contact-form .form-submit-btn:active {
    background: #2a4275;
    transform: scale(0.98);
  }
  
  /* Hide the bottom contact section on mobile contact page */
  body[data-page="contact"] .contact-section {
    display: none !important;
  }
}
