/* ===== FAQ SECTION (MATCH ELIGIBILITY THEME) ===== */
.faq {
  background: whitesmoke;
  padding: 80px 8%;
  color: #000;
}

/* ===== TITLE ===== */
.faq-container h1 {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #000;
  margin-top: 5%;
}

/* ===== FAQ ITEM ===== */
.faq-item {
  background: #fff;                 
  border-radius: 12px;
  margin-bottom: 15px;
  padding: 20px 22px;
  cursor: default;

  border: 1px solid #eee;           
  backdrop-filter: none;           

  transition: 0.3s ease;
}

/* HOVER */
.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);  
  border-color: #C13948;
}

/* ===== QUESTION ===== */
.faq-question {
  font-size: 18px;
  font-weight: 600;
  color: black;                  
  display: flex;
  justify-content: space-between;
  align-items: center;
    cursor: pointer;
}

/* ICON (+ / -) */
.faq-question::after {
  content: "+";
  font-size: 20px;
  color: #C13948;                   
  transition: 0.3s;
}

/* ACTIVE ICON */
.faq-item.active .faq-question::after {
  content: "−";
  transform: rotate(180deg);
}

/* ACTIVE QUESTION COLOR */
.faq-item.active .faq-question {
  color: #C13948;
}

/* ===== ANSWER ===== */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding-top: 0;
}

.faq-item.active .faq-answer {
  max-height: 1000px; /* safer */
  padding-top: 10px;
}
/* ===== MOBILE ===== */
@media(max-width:768px) {

  .faq-container h1 {
    font-size: 32px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-answer {
    font-size: 14px;
  }
}

/* FOOTER */
.footer{
  background:  #183152;
  color:lightgrey;
  padding-top:60px;
}

/* CONTAINER */
.footer-container{
  max-width:86%;
  margin:auto;
  display:grid;
  grid-template-columns:1.2fr 1.2fr 1fr;
  gap:50px;
  padding:0 40px 50px;
}

/* COLUMN */
.footer-col h3{
  font-size:18px;
  margin-bottom:10px;
  color: whitesmoke;
}

.footer-col p{
  font-size:14px;
  line-height:1.5;
  color:white;
}

/* SOCIAL */
.socials {
  margin-top: 25px;
  display: flex;
  gap: 15px;
}

/* ICON CIRCLE */
.socials span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.35s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* HOVER EFFECT */
.socials span:hover {
  transform: translateY(-6px) scale(1.08);
  background: linear-gradient(135deg, #C13948, #ff6b81);
  box-shadow: 0 10px 25px rgba(193,57,72,0.4);
}

.socials a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
}
/* VISITS */
.visits{
  margin-top:15px;
  font-size:14px;
}

/* MAP */
.footer-col iframe{
  width:100%;
  height: 150px;
  border-radius:6px;
  border:none;
  margin-top: 5%;
}


/* BOTTOM */
.footer-bottom{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  padding: 35px 0;
  margin: 0;

  border-top: 1px solid rgba(255,255,255,0.2);

  font-size: 14px;
  color: white;
}

.footer{
  background: #183152;
  color: lightgrey;
  padding-top: 60px;
  width: 100%;
}



/* RESPONSIVE */
@media(max-width:900px){
  .footer-container{
    grid-template-columns:1fr;
    text-align:center;
  }

  .socials{
    justify-content:center;
  }
}


/*second nav-bar*/

/* ================= TOP BAR ================= */
.top-bar {
  display: flex;
  justify-content: space-between; /* 🔥 left & right */
  align-items: center;
  padding:5px 5px;
  background:rgb(238, 240, 250);
  border-bottom: 1px solid #eee;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

/* LEFT SIDE LOGOS */
.top-left {
  display: flex;
  align-items: center;
  gap:10px;
  margin-left: 10px;
}

/* LOGOS */
.top-left img {
  height: 45px;
  transition: transform 0.5s ease;
}

.top-left img:hover {
  transform: scale(1.08);
}

.apply-alert-btn{

  background: #C13948;
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  margin-left: -7%;

  animation: pulse 1.5s infinite;
  transition: 0.3s;
}

/* hover effect */
.apply-alert-btn:hover{
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255,90,60,0.4);
}

/* PULSE ANIMATION */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255,90,60, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255,90,60, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255,90,60, 0);
  }
}

.top-bar {
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/*second nav-bar*/

/* ===== NAVBAR ===== */
.navbar {
  height: 60px;
  background: #183152;
  display: flex;
  align-items: center;
   position: fixed;
  top: 55px;
  width: 100%;
  z-index: 1000;
}

/* LOGO LEFT */
.logo {
 display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 12px;
}

.logo img {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 45px;
  transition: transform 0.5s ease;
  margin-top: 5px;
}

/* CENTER MENU */
.nav-links {
  list-style: none;
  display: flex;
  gap: 35px;

  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* LINKS */
.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 15px;
  margin-top: 10px;
}

.nav-links a.active,
.nav-links a:hover {
  color: #C13948;
}


/* MOBILE */
@media (max-width:768px){

  .menu-toggle{
    display: block;
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10001;
    color: black;
  }

  .mobile-menu{
    position: fixed;
    top: 60px;
    right: -100%;
    width: 50%;
    height: 100vh;
    background: #C13948;

    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;

    transition: 0.3s;
    z-index: 10000;
  }

  .mobile-menu.active{
    right: 0;
  }

  .mobile-menu a{
    color: white;
    font-size: 18px;
    text-decoration: none;
  }
}

.mobile-menu li{
  list-style: none;
}


/* ===== SCROLL TO TOP BUTTON ===== */
#scrollTopBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;

  width: 50px;
  height: 50px;
  border: none;
  border-radius: 12px;

  background: #C13948;
  color: white;
  font-size: 22px;

  cursor: pointer;
  display: none;

  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: 0.3s;
  z-index: 9999;
}

#scrollTopBtn:hover {
  transform: translateY(-3px);
  background: #a72f3b;
}

