/* Modern Contact Page Styles */
body {
  font-family: 'Poppins', Arial, sans-serif;
  background: #f7f7fa;
  margin: 0;
  color: #23232b;
}
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}
.contact-header {
  background: linear-gradient(120deg, #23232b 60%, #444 100%);
  color: #fff;
  text-align: center;
  padding: 3rem 0 1.5rem 0;
}
.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}
.contact-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  opacity: 0.9;
}
.contact-nav {
  background: #ff6f61;
  padding: 1.2rem 0;
}
.nav-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.theme-toggle {
  background: rgba(255,255,255,0.18);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2em;
  color: #2563eb;
  margin-right: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.10);
}
.nav-link {
  font-size: 1.1rem;
  color: #fff;
  background: #23232b;
  padding: 0.7rem 1.5rem;
  border-radius: 2rem;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}
.nav-link:hover {
  background: #61c0ff;
  color: #23232b;
  transform: scale(1.08);
}
.contact-section {
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  margin: 2.5rem auto;
  padding: 2.5rem 2rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #23232b;
  text-align: center;
}
.contact-info {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f7f7fa;
  border-radius: 1.2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.contact-info p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 0.7rem;
}
.contact-info a {
  color: #61c0ff;
  text-decoration: underline;
  transition: color 0.3s;
}
.contact-info a:hover {
  color: #ff6f61;
}
.contact-social {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1.2rem;
}
.contact-social a {
  font-size: 1.1rem;
  color: #fff;
  background: #61c0ff;
  padding: 0.7rem 1.5rem;
  border-radius: 2rem;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}
.contact-social a:hover {
  background: #ff6f61;
  color: #fff;
  transform: scale(1.08);
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background: #f7f7fa;
  border-radius: 1.2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: grid;
  gap: 1.2rem;
}
.contact-form label {
  font-size: 1.1rem;
  color: #23232b;
  font-weight: 500;
}
.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid #ddd;
  font-size: 1rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  background: #fff;
  transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid #61c0ff;
  outline: none;
}
.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form button {
  background: linear-gradient(90deg, #ff6f61, #61c0ff);
  color: #fff;
  padding: 1rem 0;
  border: none;
  border-radius: 1rem;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: background 0.3s, transform 0.2s;
}
.contact-form button:hover {
  background: linear-gradient(90deg, #61c0ff, #ff6f61);
  transform: translateY(-2px) scale(1.04);
}
.contact-footer {
  background: linear-gradient(120deg, #23232b 60%, #444 100%);
  color: #fff;
  text-align: center;
  padding: 2.5rem 0 1.5rem 0;
}
.contact-footer-social {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}
.contact-footer-social a {
  font-size: 1.1rem;
  color: #fff;
  background: #61c0ff;
  padding: 0.7rem 1.5rem;
  border-radius: 2rem;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}
.contact-footer-social a:hover {
  background: #ff6f61;
  color: #fff;
  transform: scale(1.08);
}



.night-mode label {
  color: #fff !important;
}
.night-mode input::placeholder,
.night-mode textarea::placeholder {
  color: #fff !important;
  opacity: 0.8;
}
.night-mode .contact-info {
  background: #181c24 !important;
  border-radius: 24px;
}
/* Dark mode styles */
.night-mode {
  background: #181c24 !important;
  color: #e2e6ee !important;
}
.night-mode .header {
  background: #23283a !important;
  color: #e2e6ee !important;
}
.night-mode .header h1 {
  color: #e2e6ee !important;
}
.night-mode .header p {
  color: #bfc8e6 !important;
}
.night-mode .contact-container {
  background: #23283a !important;
  box-shadow: 0 8px 40px rgba(30,40,60,0.22), 0 1.5px 8px rgba(0,0,0,0.13) !important;
}
.night-mode .contact-info h2,
.night-mode .contact-form h2 {
  color: #7ab6f9 !important;
}
.night-mode .contact-info p,
.night-mode .contact-info a {
  color: #bfc8e6 !important;
}
.night-mode .contact-info a:hover {
  color: #7ab6f9 !important;
}
.night-mode .social-links a {
  background: #23283a !important;
  color: #7ab6f9 !important;
}
.night-mode .social-links a:hover {
  background: #7ab6f9 !important;
  color: #23283a !important;
}
.night-mode .contact-form {
  background: linear-gradient(120deg,#23283a 60%,#181c24 100%) !important;
}
.night-mode input,
.night-mode textarea {
  background: #181c24 !important;
  color: #e2e6ee !important;
  border-color: #23283a !important;
}
.night-mode input:focus,
.night-mode textarea:focus {
  border-color: #7ab6f9 !important;
}
.night-mode button {
  background: linear-gradient(90deg,#7ab6f9 60%,#23283a 100%) !important;
  color: #23283a !important;
}
.night-mode button:hover {
  background: linear-gradient(90deg,#23283a 60%,#7ab6f9 100%) !important;
  color: #fff !important;
}
.night-mode .footer {
  background: #23283a !important;
  color: #bfc8e6 !important;
  border-top: 1px solid #181c24 !important;
}
/* contact-custom.css - Clean, minimal, responsive contact page styles */


body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f7f8fa;
  color: #222;
  margin: 0;
  padding: 0;
}

.header {
  text-align: center;
  padding: 2rem 1rem 1rem 1rem;
  background: #fff;
  box-shadow: 0 4px 24px rgba(45,92,138,0.10);
  border-radius: 0 0 24px 24px;
}

.header h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.header p {
  color: #666;
  font-size: 1.1rem;
}

.contact-container {
  max-width: 900px;
  margin: 2rem auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(45,92,138,0.18), 0 1.5px 8px rgba(0,0,0,0.07);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2.5rem 2rem;
  transition: box-shadow 0.3s;
}

.contact-container:hover {
  box-shadow: 0 16px 64px rgba(45,92,138,0.22), 0 2px 12px rgba(0,0,0,0.10);
}

.contact-info, .contact-form {
  flex: 1 1 320px;
  min-width: 280px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  justify-content: center;
}

.contact-info h2 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #2d5c8a;
}

.contact-info p, .contact-info a {
  color: #444;
  font-size: 1rem;
  text-decoration: none;
}

.contact-info a:hover {
  color: #2d5c8a;
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-links a {
  display: inline-block;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #e9eef3 60%, #dbe2ea 100%);
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  color: #2d5c8a;
  font-size: 1.3rem;
  box-shadow: 0 2px 8px rgba(45,92,138,0.10);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.social-links a:hover {
  background: linear-gradient(135deg, #2d5c8a 60%, #184063 100%);
  color: #fff;
  transform: scale(1.12);
}

.contact-form h2 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #2d5c8a;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.2rem;
}

input, textarea {
  padding: 0.7rem 1rem;
  border: 1.5px solid #dbe2ea;
  border-radius: 12px;
  font-size: 1rem;
  background: #f7f8fa;
  transition: border 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 4px rgba(45,92,138,0.07);
}

input:focus, textarea:focus {
  border-color: #2d5c8a;
  box-shadow: 0 2px 12px rgba(45,92,138,0.13);
  outline: none;
}

button {
  padding: 0.8rem 1.5rem;
  background: linear-gradient(90deg, #2d5c8a 60%, #184063 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(45,92,138,0.10);
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  position: relative;
  overflow: hidden;
}

button:hover {
  background: linear-gradient(90deg, #184063 60%, #2d5c8a 100%);
  box-shadow: 0 4px 16px rgba(45,92,138,0.18);
  transform: translateY(-2px) scale(1.04);
}

button:active {
  transform: scale(0.98);
}

button::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s;
  z-index: 0;
}

button:active::after {
  width: 120%;
  height: 120%;
}

.footer {
  text-align: center;
  padding: 1.5rem 1rem 1rem 1rem;
  color: #888;
  font-size: 0.95rem;
  background: #fff;
  border-top: 1px solid #e9eef3;
  margin-top: 2rem;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -2px 8px rgba(45,92,138,0.07);
}

@media (max-width: 700px) {
  .contact-container {
    flex-direction: column;
    padding: 1.2rem 0.5rem;
    gap: 1.2rem;
  }
  .header {
    border-radius: 0 0 16px 16px;
  }
  .footer {
    border-radius: 16px 16px 0 0;
  }
}

