
/*============================
        Footer Section
   ==========================*/
footer {
  width: 100vw;
  height: 100%;
  /* border: 2px solid red; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footer-section {
  /* border: 2px solid blue; */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  border-top: 1px solid rgb(0 0 0 / 10%);
  margin-top: 8%;
}
.footer-content {
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* border: 2px solid green; */
  padding-top: 5%;
}
.footer-content-left {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  padding-bottom: 10px;
}
.footer-content-left::before{
  content: "";
  position: absolute;
  top: -20px;
  right: -30px;
  width: 2px;
  height: 110%;
  background-color: #000;
  opacity: 0.1;
}
.left-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  gap: 40px;
}

.real-estate-advisor h4 {
  font-size: 40px;
  line-height: 95%;
  font-weight: 400;
  width: 100%;
  color: black;
}
.date h5 {
  font-size: 20px;
  color: black;
  font-weight: 400;
}
.download-pdf {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 1em;
  text-decoration: none;
  color: #333;
}
.download-pdf span:hover{
  filter: invert();
   cursor: pointer;
}
.download-pdf img:hover{
  filter: invert();
}
.download-text {
  /* border-bottom: 1px solid #333; */
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}
.center-column {
  display: flex;
  justify-content: center;
  align-items: center;
}
.right-column {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 100px;
  
}

.sign-up-section h2 {
  font-size: 55px;
  font-weight: 700;
  line-height: 0.9;
  font-family: var(--font-heading);
  color: black;
}
.signup-form {
  display: flex;
  margin-top: 20px;
}
.signup-form .form-control {
  border: none;
  color: black;
  border-bottom: 2px solid rgb(0 0 0 / 25%);
  border-radius: 0;
  padding: 8px 0;
  background-color: transparent;
  font-size: 1em;
  margin-bottom: 0;
}

.signup-form input[type="email"]::placeholder {
  color: rgb(104, 104, 104) !important;
}

.signup-form input[type="email"]:focus {
  background: none; 
}

.signup-form .btn {
  background: none;
  border: none;
  border-bottom: 2px solid rgb(0 0 0 / 25%);
  border-radius: 0;
  color: #000;
  padding: 8px 0 8px 15px;
  font-size: 1em;
  cursor: pointer;
}
.signup-form .btn:hover {
  color: #555;
  border-color: #555;
}
.stay-in-the-know {
  margin-top: 10%;
}
.stay-in-the-know h5 {
  font-size: 36px;
  line-height: 95%;
  font-family: var(--font-heading);
  font-weight: 400;
  color: #000;
  letter-spacing: -1px;
  
}
.hanane-sarhani-text {
  margin-bottom: 10%;
}
.hanane-sarhani-text h5{
  font-family: var(--font-heading);
  font-size: 70px;
  line-height: 95%;
  font-weight: 700;
  color: #000;
  font-style: italic;
}
.bottom-bar {
  /* background-color: #f8f8f8; */
  /* border-top: 1px solid #e0e0e0; */
  padding: 45px 0;
  font-size: 0.9em;
  color: #555;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bottom-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 90%;
}
.bigboys-logo {
  width: 12%;
}
.footer-links {
  text-decoration: none;
  color: #555;
}
.footer-links:hover {
  color: #000;
}

.social-icons {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.social-icons a {
  text-decoration: none;
}
.social-icons a i {
  color: #555;
  font-size: 1.5em;
  transition: all 0.3s ease;
}
.social-icons a i:hover {
  color: #000 !important;
  transform: scale(1.1);
}
.copyright-info{
  display: flex;
  justify-content: center;
  align-items: center;
}
.copyright-info span:hover{
   color: #000;
   cursor: pointer;
}
/* =======================
   Responsive Footer Fixes
   ======================= */

/* ≤1366px screens (slightly scale down) */
@media (max-width: 1366px) {
  .sign-up-section h2 {
    font-size: 38px;
  }
  .hanane-sarhani-text h5 {
    font-size: 60px;
  }
  .real-estate-advisor h4 {
    font-size: 34px;
  }
  .stay-in-the-know h5 {
    font-size: 32px;
  }
}

/* ≤1200px (smaller laptops / large tablets in landscape) */
@media (max-width: 1200px) {
  .footer-section {
    width: 100vw;
  }
  .footer-content-left {
    /* flex-direction: column; */
    /* align-items: center; */
    text-align: center;
    gap: 50px;
  }
  .footer-content-left::before {
    display: none; /* remove vertical divider for smaller screens */
  }
  .right-column {
    padding-left: 50px;
    text-align: center;
  }
  .sign-up-section h2 {
    font-size: 40px;
  }
  .hanane-sarhani-text h5 {
    font-size: 50px;
  }
  .left-column{
    text-align: left;
  }
}

/* ≤992px (tablets) */
@media (max-width: 992px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .left-column,
  .center-column,
  .right-column {
    width: 100%;
    margin-bottom: 30px;
  }
  .left-column{
    text-align: left;
  }
  .right-column{
    margin-top: 40px;
    margin-bottom: 0px;
  }
  .center-column {
    order: -1; /* bring image above everything */
  }
  .signup-form {
    justify-content: center;
  }
  .sign-up-section h2 {
    font-size: 42px;
  }
  .hanane-sarhani-text h5 {
    font-size: 42px;
  }
  .stay-in-the-know h5 {
    font-size: 28px;
  }
      .bottom-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .right-column{
    padding-left: 0px;
  }
}

/* ≤768px (phablets & small tablets) */
@media (max-width: 768px) {
  .footer-section {
    width: 100%;
  }
  .download-pdf {
    justify-content: center;
  }
  .bottom-bar-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .social-icons a {
    margin: 0 10px;
  }
  .footer-links a {
    margin: 0 10px;
  }
  .copyright-info{
    display: block;
  }
  .right-column{
    padding-left: 0px;
  }
}

/* ≤576px (phones) */
@media (max-width: 576px) {
  .sign-up-section h2 {
    font-size: 30px;
  }
  .hanane-sarhani-text h5 {
    font-size: 32px;
  }
  .stay-in-the-know h5 {
    font-size: 20px;
    line-height: 120%;
  }
  .signup-form {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .signup-form .form-control,
  .signup-form .btn {
    width: 90%;
    text-align: center;
  }
  .footer-content-left {
    flex-direction: column;
    gap: 1rem;
  }
  .left-column {
    margin-bottom: 0;
  }
  .right-column{
    padding-left: 0px;
  }
  .center-column {
    width: 100%;
  }
  .download-pdf img{
    display: none;
  }
  .download-pdf {
    position: absolute;
    bottom: 0;
    width: 93%;
    text-align: center;
  }
}


