/* Footer main style */
.footer{
  background: #0b1220;
  color: #cbd5e1;
}

/* Footer container width */
.footer__container{
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* Footer bottom row */
.footer__container.footer__bottomInner{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
}

/* Footer bottom area */
.footer__bottom{
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 14px 0;
  font-size: 0.92rem;
  color: #94a3b8;
}

/* Small dot between footer items */
.footer__dot{
  opacity: .6;
}

/* Footer main grid */
.footer__container{
  padding: 44px 0;
  display: grid;
  gap: 26px;
  grid-template-columns: 2.2fr 1fr 1fr 1.3fr;
}

/* Logo mark box */
.footer__logoMark{
  width: 38px;
  height: 38px;
  display:grid;
  place-items:center;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  letter-spacing: .5px;
}

/* Footer logo section */
.footer__logo {
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:#fff;
  font-weight:700;
  margin-bottom: 10px;
}

/* Footer logo image */
.footer__logoImg {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  padding: 5px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
}

/* Footer logo text */
.footer__logoText {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
}

/* Footer description */
.footer__desc{
  line-height: 1.6;
  margin: 10px 0 14px;
  color: #b6c2d3;
  max-width: 44ch;
}

/* Contact box */
.footer__contact{
  display:flex;
  flex-direction:column;
  gap: 8px;
  font-size: 0.95rem;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: #cbd5e1;
  text-decoration: none;
  width: fit-content;
  max-width: 100%;
  transition: background .2s ease, color .2s ease;
}

/* Contact item */
.footer__contactItem{
  color:#cbd5e1;
  text-decoration:none;
  opacity: .9;
}

/* Contact item hover */
.footer__contactItem:hover{ 
  transform: translateY(-1px);
  background: rgba(255,255,255,0.10);
  color: #fff;
}

/* Contact emoji size */
.footer__contactItem::first-letter{
  font-size: 1.05rem;
  line-height: 1;
}

/* Footer section title */
.footer__title{
  margin: 6px 0 12px;
  font-size: 1.15rem;
  color:#fff;
}

/* Footer links list */
.footer__list {
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap: 10px;
}

/* Footer links */
.footer__list a{
  color:#cbd5e1;
  text-decoration:none;
  opacity: .9;
  font-size: 1.01rem;
  font-weight: 600;
}

/* Footer links hover */
.footer__list a:hover{ 
  opacity: 1;
  color:#fff; 
}

/* Emergency link button */
.footer__emergency{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: .3px;
  color: #fffbfb;
  background: linear-gradient(135deg, #ff4d4d, #ff7a18);
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 6px 16px rgba(255, 77, 77, 0.35);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

/* Emergency link hover */
.footer__emergency:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(255, 77, 77, 0.5);
}

/* Emergency link active */
.footer__emergency:active{
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(255, 77, 77, 0.35);
}

/* Small footer text */
.footer__small{
  margin: 0 0 12px;
  color: #b6c2d3;
  line-height: 1.5;
}

/* Social icons row */
.footer__socialRow{
  display:flex;
  gap: 10px;
  margin-bottom: 14px;
}

/* Social button */
.footer__socialBtn{
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  font-size: 1.2rem;
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* Social icon size */
.footer__socialBtn i{
  font-size: 1.5rem;
}

/* Social button hover */
.footer__socialBtn:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.12);
}

/* Instagram hover */
.footer__socialRow a:nth-child(1):hover {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285AEB 90%
  );
  box-shadow: 0 8px 20px rgba(214, 36, 159, 0.45);
}

/* TikTok hover */
.footer__socialRow a:nth-child(2):hover {
  background: #000;
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.1),
    0 8px 20px rgba(37, 244, 238, 0.35),
    0 -2px 12px rgba(254, 44, 85, 0.35);
}

/* Twitter hover */
.footer__socialRow a:nth-child(3):hover {
  background: #000;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.55);
}

/* Newsletter form */
.footer__form{
  display:flex;
  gap: 10px;
  align-items:center;
}

/* Newsletter input */
.footer__input{
  flex: 1;
  min-width: 160px;
  padding: 11px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color:#fff;
  outline: none;
}

/* Newsletter input placeholder */
.footer__input::placeholder{ 
  color: rgba(203,213,225,.7); 
}

/* Newsletter button */
.footer__btn{
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.10);
  color:#fff;
  cursor:pointer;
}

/* Newsletter button hover */
.footer__btn:hover{
  background: rgba(255,255,255,0.14);
}

/* Small footer note */
.footer__tiny{
  margin-top: 10px;
  font-size: .85rem;
  color: #94a3b8;
}

/* Tablet layout */
@media (max-width: 900px){
  .footer__container{
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile layout */
@media (max-width: 520px){
  .footer__container{
    grid-template-columns: 1fr;
  }

  .footer__container.footer__bottomInner{
    justify-content:flex-start;
  }
}