/* =======================
   FOOTER BASE
======================= */
.site-footer {
  background: url("../bg-2.jpg"); /* Bastani yellow */
  color: #2a2929; /* Dark charcoal for readability */
  padding: 50px 0 30px;
  background-color: #014d4d;
  line-height: 1.6;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding: 0 20px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

/* =======================
   LEFT SECTION
======================= */
.footer-about {
  flex: 1.5;
  padding-right: 20px;
}

.footer-logo h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0 0 10px;
  color: #000000; /* strong contrast */
}

.footer-logo p {
  font-size: 1rem;
  margin: 0 0 15px;
  color: #1f1f1f;
}

.description {
  text-align: justify;
  font-size: 0.9rem !important;
  color: #2a2929;
}

/* =======================
   MIDDLE SECTION
======================= */
.footer-links h3,
.footer-contact h3 {
  text-transform: uppercase;
  font-size: 1.2rem;
  margin-bottom: 15px;
  letter-spacing: 1px;
  color: #111;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.footer-links a,
.footer-contact a {
  color: #2b2b2b;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 1rem;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fbcd01; /* accessible dark blue accent */
  font-size: 1rem;
}

/* =======================
   RIGHT SECTION
======================= */
.footer-contact .contact-group {
  margin-bottom: 20px;
  font-size: 1rem;
  color: #222;
}

.social-icons {
  margin-top: 10px;
  height: fit-content;
  font-size: 30px;
}

.social-icons a {
  font-size: 24px;
  margin-right: 15px;
  color: #1a1a1a;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #fbcd01;
  font-size: 30px;
}

/* =======================
   BOTTOM BAR
======================= */
.footer-bottom {
  text-align: center;
  padding: 15px 20px;
  margin-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.footer-bottom p {
  margin: 5px 0;
  font-size: 0.8rem;
  color: #222;
}

/* =======================
   RESPONSIVE BREAKPOINTS
======================= */

/* 1000px */
@media (max-width: 1000px) {
  .footer-logo h2 {
    font-size: 2.2rem;
  }
}

/* 800px */
@media (max-width: 800px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-about {
    padding-right: 0;
  }
}

/* 600px */
@media (max-width: 600px) {
  .footer-logo h2 {
    font-size: 2rem;
  }
  .footer-logo p {
    font-size: 0.95rem;
  }
  .social-icons {
    justify-content: center;
    display: flex;
  }
}

/* 400px */
@media (max-width: 400px) {
  .footer-logo h2 {
    font-size: 1.7rem;
  }
  .footer-logo p {
    font-size: 0.9rem;
  }
  .footer-links h3,
  .footer-contact h3 {
    font-size: 0.85rem;
  }
}

/* 320px */
@media (max-width: 320px) {
  .footer-logo h2 {
    font-size: 1.5rem;
  }
  .footer-logo p {
    font-size: 0.85rem;
  }
  .footer-bottom p {
    font-size: 0.7rem;
  }
}

/* =======================
   TYPOGRAPHY SCALE
======================= */

/* Headings */
h1,
.faq-container h1,
.footer-logo h2 {
  font-size: clamp(1.8rem, 2.5vw + 1rem, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.5rem, 2vw + 0.8rem, 2.2rem);
  font-weight: 600;
  line-height: 1.3;
}

h3 {
  font-size: clamp(1.2rem, 1.5vw + 0.6rem, 1.4rem);
  font-weight: 600;
  line-height: 1.4;
}

/* Body text */
p,
li,
a,
.faq-answer,
.description {
  font-size: clamp(0.9rem, 1vw + 0.6rem, 1rem);
  line-height: 1.6;
}

/* Small text (footer, captions) */
small,
.footer-bottom p {
  font-size: clamp(0.75rem, 0.9vw + 0.4rem, 0.85rem);
  line-height: 1.4;
}

/* Container for logo */
.home-logo-box2 {
  display: flex; /* Use flexbox for alignment */
  justify-content: left; /* Center horizontally */
  align-items: left; /* Center vertically if needed */
  padding: 1px 0; /* Top and bottom padding */
  background-color: transparent; /* Optional: set bg color */
}

/* Logo image */
.home-logo-box2 img {
  max-width: 220px; /* Adjust size */
  height: auto; /* Keep aspect ratio */
  transition: transform 0.3s ease; /* Smooth hover effect */
}

/* Small screens: center logo */
@media (max-width: 768px) {
  .home-logo-box2 {
    justify-content: center; /* Center horizontally */
  }

  .home-logo-box2 img {
    max-width: 160px; /* Slightly smaller on mobile */
  }
}
