.footer {
    background-color: #000;
    padding: 50px 80px;
    /* border-top: 1px solid #333; */
}
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 60px 0px;
}
.footer-left {
    flex: 0 0 60%;
    max-width: 60%;
}
.footer-left h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: normal;
}
.footer-left p {
    font-size: 18px;
    line-height: 1.7;
    margin-top: 10px;
    color: #cfcfcf;
    padding-right: 113px;
}
.footer-left p span {
    font-weight: bold;
}
.footer-right {
    flex: 0 0 30%;
    max-width: 40%;
    display: flex;
    justify-content: space-between;
    line-height: 31px;
    margin-right: 68px;
}
.footer-column {
    display: flex;
    flex-direction: column;
}
.footer-column h3 {
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: normal;
}
.footer-column a {
    color: #fff;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 12px;
    padding-bottom: 4px;
    transition: 0.3s;
}
.footer-column a:hover {
    color: #A1845A
}
.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
    color: #999;
    line-height: 32px;
}
.footer-bottom .left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-bottom .right {
    display: flex;
    align-items: center;
    gap: 15px;
}
.footer-bottom img {
    height: 40px;
}
.social-icons img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
@media (max-width: 1190px) {
    .footer {
        padding: 50px 30px;
    }
    .footer-left {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .footer-left p {
        padding-right: 0px;
    }
    .footer-right {
        flex: 0 0 100%;
        max-width: 100%;
        margin-top: 30px;
    }
    .footer-column h3 {
        font-size: 22px;
        margin-bottom: 20px;
        font-weight: normal;
    }
    .footer-bottom .right {
        display: inline-grid;
        align-items: center;
        gap: 1px;
        margin: auto;
    }
    .social-icons img {
        margin: 9px;
    }
}


  
  /* Tablet 1024–1176px – prevent right side overflow */
  @media (max-width: 1176px) {
    .tooltip-text {
      left: auto !important;
      /* right: 0 !important;      stick inside screen */
      transform: none !important;
      max-width: 283px;         /* keep box smaller */
      text-align: left;
    }
    .tooltip-text::after {
        content: "";
        position: absolute;
        bottom: 100%;
        left: 4%!important;
    }
  }

  
  /* Desktop / Laptop: move icon below title */
  @media (max-width: 1176px) {
    .title-with-tooltip {
      display: flex;
      flex-direction: column; /* stack vertically */
      align-items: flex-start; /* keep aligned with title */
      gap: 6px;
    }
  }
/* Container */
.tooltip-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
  }
  
  /* Info icon */
  .info-icon {
    font-size: 18px;
    color: #fcf9f9;
    transition: color 0.2s ease-in-out;
  }
  .info-icon:hover {
    color: #A1845A;
  }
  
  /* Tooltip default (desktop/tablet: DOWN) */
  .tooltip-text {
    position: absolute;
    top: 120%; /* open below */
    left: 50%;
    transform: translateX(-50%);
    width: 283px;
    background: #fff;
    color: gray;
    font-size: 10px;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.15);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 99;
  }

  .tooltip-container .tooltip-text .tooltip-description {
    font-size: 13px;
    margin: 0px;
    line-height: 1.4!important;
    color:#616264;
  }
  
  /* Arrow (desktop/tablet: points up) */
  .tooltip-text::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
  }
  
  /* Subtitle */
  .cs-subtitle {
    text-transform: uppercase;
    color: #A1845A;
    font-weight: bold;
  }
  
  /* Hover works on desktop/tablet */
  .tooltip-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
  }
  
  /* ====== PHONE VIEW (<768px): Tooltip centered ====== */
  /* @media (max-width: 767px) {
    .tooltip-text {
      top: 386%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 85vw;
      max-height: 70vh;
      overflow-y: auto;
      font-size: 12px;
      border-radius: 10px;
    }
    .tooltip-text::after {
      display: none; 
    }
  } */