/* ===== Base Styles ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(to right, #eef2f3, #dbe9f4);
  padding: 0;
  min-height: 100vh;
  color: #1e293b;
  overflow-x: hidden;
}

/* ========== HEADER & BOTTOM NAV STYLES REMOVED ========== */
/* Note: Header styles ab /components/header/header.css mein hain */
/* Note: Bottom Nav styles ab /components/bottomnav/bottomnav.css mein hain */

/* ===== Contact Page ===== */
.contact-page {
  max-width: 800px;
  margin: 60px auto;
  padding: 40px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border-radius: 12px;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.8;
  color: #1e293b;
}

.contact-page h1 {
  font-size: 32px;
  color: #1e40af;
  margin-bottom: 25px;
  border-bottom: 3px solid #3b82f6;
  padding-bottom: 12px;
  text-align: center;
}

.contact-page p {
  font-size: 16px;
  margin-bottom: 18px;
  color: #475569;
  text-align: center;
}

.contact-page strong {
  color: #1e293b;
  font-weight: 600;
}

.contact-page a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
}

.contact-page a:hover {
  color: #1e40af;
  border-bottom-color: #1e40af;
}

/* ===== Contact Card Enhancement ===== */
.contact-page p:nth-child(3) {
  background: #f0f9ff;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #3b82f6;
  margin-top: 30px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .contact-page {
    margin: 40px auto;
    padding: 30px 20px;
  }
  
  .contact-page h1 {
    font-size: 26px;
  }
  
  .contact-page p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .contact-page {
    margin: 20px 10px;
    padding: 25px 15px;
  }
  
  .contact-page h1 {
    font-size: 24px;
  }
  
  .contact-page p {
    font-size: 14px;
  }
}

/* =================== RESPONSIVE FIX =================== */
/* Desktop: footer sticks to bottom */
@media (min-width: 768px) {
  #footer-container {
    margin-top: auto;
  }
}

/* Mobile: footer sits above bottom nav */
@media (max-width: 767px) {
  #footer-container {
    margin-bottom: 55px; /* space for nav */
  }
}
