/* consultation.css */

@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #0d1321;
  line-height: 1.6;
}
/* Headings */
    h1, h2, h3, h4, h5, h6, .subheading {
      font-family: 'EB Garamond', serif; /* Changed from Times New Roman */
    }


.menu-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f4f4f4;
  padding: 16px 32px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-logo {
  max-width: 250px;
  height: auto;
}
.logo img {
  max-width: 300px;
  height: 200px;
}
.menu-links {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
  align-items: center;
}
.menu-links a {
  text-decoration: none;
  color: #090909;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
  position: relative;
  padding: 4px 0;
}
.menu-links a:hover,
.menu-links a.active {
  color: #fca311;
}

/* Consultation Section */
.consultation-section {
  max-width: 600px;
  margin: 40px auto;
  padding: 32px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  color: #1d2d44;
}

.consultation-section h2 {
  font-size: 2rem;
  color: #fca311;
  margin-bottom: 16px;
  text-align: center;
}

.consultation-section p {
  font-size: 1rem;
  margin-bottom: 20px;
  text-align: center;
}

.consultation-form .form-group {
  margin-bottom: 20px;
}

.consultation-form label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #284b63;
}

.consultation-form input[type="text"],
.consultation-form input[type="email"],
.consultation-form input[type="tel"],
.consultation-form input[type="date"],
.consultation-form input[type="time"],
.consultation-form textarea {
  padding: 12px 16px;
  border: 2px solid #fca311;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  width: 100%;
  transition: border-color 0.3s ease;
}

.consultation-form input:focus,
.consultation-form textarea:focus {
  border-color: #0d1321;
  outline: none;
}

.consultation-form button {
  background-color: #fca311;
  border: none;
  color: #0d1321;
  padding: 16px 36px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
}

.consultation-form button:hover {
  background-color: #0d1321;
  color: #fca311;
  outline: none;
}

/* Footer Styles */
.custom-footer {
  background-color: #f4f4f4;
  color: #0d1321;
  padding: 40px 20px 20px;
  font-family: 'Inter', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1500px;
  margin: 0 auto;
}

.footer-brand {
  flex: 1 1 220px;
  text-align: left;
}

.footer-logo {
  max-width: 320px;
  height: auto;
  display: block;
  margin: 0;
}

.footer-block {
  flex: 1 1 220px;
  min-width: 220px;
}

.footer-block h4 {
  color: #0d1321;
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-block p,
.footer-block li {
  margin-bottom: 8px;
  color: #333;
  font-size: 0.95rem;
}

.footer-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-block i {
  margin-right: 8px;
  color: #fca311;
}

/* Links */
.footer-block a {
  color: #fca311;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-block a:hover {
  color: #0d1321;
  text-shadow: 0 0 3px rgba(252, 163, 17, 0.6);
  text-decoration: underline;
}

/* Hover effects on list items */
.footer-block ul li {
  position: relative;
  transition: transform 0.2s ease, color 0.3s ease;
}

.footer-block ul li:hover {
  color: #fca311;
  transform: translateX(5px);
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #ccc;
  padding-top: 16px;
  margin-top: 40px;
  font-size: 14px;
  color: #666;
}

/* Social icons */
.footer-socials {
  margin-top: 12px;
  text-align: center;
}

.footer-socials a {
  color: #0d1321;
  margin: 0 10px;
  font-size: 18px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
  color: #fca311;
  transform: scale(1.2);
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-block {
    width: 100%;
  }

  .footer-logo {
    margin-bottom: 20px;
  }
}
