:root{
  --brand:#1a6fb5;
  --brand2:#0b4f8a;
  --ink:#0b1d33;
  --muted:#6c7a89;
  --card:#ffffff;
}

/* Base */
html{
  scroll-behavior:smooth;
}

body{
  background: radial-gradient(1200px 700px at 20% 0%, #eaf2ff 0%, #f6f8fc 40%, #f3f6fb 100%);
  color:#132338;
}

.muted{
  color:var(--muted);
}

.cardx{
  background:#fff;
  border-radius:18px;
  border:1px solid rgba(11,79,138,.10);
  box-shadow:0 18px 45px rgba(16,24,40,.10);
}

.btn-primary{
  background:var(--brand);
  border-color:var(--brand);
}

/* Navbar */
.nav-glass{
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(7,28,49,.55) 0%, rgba(10,38,66,.30) 100%);
  border-bottom: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 35px rgba(0,0,0,.10);
}

.navbar-brand img{
  max-height: 34px;
  width: auto;
  display: block;
}

.navbar .navbar-nav{
  gap: .15rem;
}

.navbar .nav-link{
  position: relative;
  color: rgba(255,255,255,.88) !important;
  font-weight: 600;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: .62rem .72rem !important;
  border-radius: 10px;
  transition: all .22s ease;
}

.navbar .nav-link:hover{
  color: #fff !important;
  background: rgba(255,255,255,.08);
}

.navbar .nav-link.active{
  color: #fff !important;
  background: rgba(255,255,255,.12);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}

.navbar .nav-link::after{
  content:"";
  position:absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.95), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
  opacity: .9;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after{
  transform: scaleX(1);
}

.navbar .dropdown-toggle{
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

.navbar .dropdown-toggle::after{
  margin-left: .15rem;
  vertical-align: middle;
  border-top: .34em solid;
  border-right: .34em solid transparent;
  border-left: .34em solid transparent;
  transition: transform .2s ease;
}

.navbar .show > .dropdown-toggle::after{
  transform: rotate(180deg);
}

.navbar .nav-item.has-submenu > .nav-link{
  position: relative;
  padding-right: 1.45rem !important;
}

.navbar .nav-item.has-submenu > .nav-link.dropdown-toggle::after{
  display: none !important;
}

.navbar .nav-item.has-submenu > .nav-link::before{
  content: "▾";
  position: absolute;
  right: .52rem;
  top: 50%;
  transform: translateY(-54%);
  font-size: .78rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  opacity: .95;
  transition: transform .2s ease, opacity .2s ease;
}

.navbar .nav-item.has-submenu > .nav-link:hover::before{
  transform: translateY(-54%) scale(1.08);
  opacity: 1;
}

.navbar .nav-item.has-submenu.show > .nav-link::before{
  transform: translateY(-54%) rotate(180deg);
  opacity: 1;
}

/* Dropdown */
.navbar .dropdown-menu{
  margin-top: 10px !important;
  min-width: 280px;
  max-width: min(320px, calc(100vw - 24px));
  padding: 6px 0;
  border: 0;
  border-radius: 12px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 14px 34px rgba(15,23,42,.14);
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
}

.navbar .dropdown-menu[data-bs-popper]{
  left: 0;
  margin-top: 12px;
}

.navbar .dropdown-menu.dropdown-menu-end{
  right: 0;
  left: auto;
}

.navbar .dropdown-item{
  display: block;
  width: 100%;
  white-space: normal;
  overflow-wrap: break-word;
  padding: .68rem .95rem;
  color: #17314d;
  font-weight: 600;
  line-height: 1.35;
  transition: background-color .18s ease, color .18s ease, padding-left .18s ease;
  background: transparent;
  border-radius: 8px;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus{
  color: var(--brand2);
  background: rgba(26,111,181,.12) !important;
  padding-left: 1.1rem;
  text-decoration: none;
}

.navbar .dropdown-item .drop-ico,
.navbar .dropdown-item .drop-end{
  display: none !important;
}

.navbar .dropdown-item .drop-text{
  display: inline;
  flex: unset;
}

/* Hero slider */
.hero-slider{
  position: relative;
  overflow: hidden;
}

.hero-slide{
  min-height: 78vh;
  background: center/cover no-repeat;
  position: relative;
  color:#fff;
}

.hero-slide::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(1200px 700px at 20% 20%, rgba(26,111,181,.35), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.35) 35%, rgba(0,0,0,.55) 100%);
}

.hero-content{
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 8rem 1rem 6rem;
}

.hero-title{
  font-weight: 900;
  letter-spacing: .2px;
  text-shadow: 0 18px 50px rgba(0,0,0,.45);
  line-height: 1.05;
}

.hero-lead{
  color: rgba(255,255,255,.9);
  max-width: 720px;
  margin: 0 auto;
}

.btn-soft{
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.28);
  color:#fff;
}

.btn-soft:hover{
  background: rgba(255,255,255,.22);
  color:#fff;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.35));
}

/* Feature strip */
.feature-strip{
  margin-top:-62px;
  position: relative;
  z-index: 5;
}

.feature-box{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(11,79,138,.10);
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(16,24,40,.12);
  overflow:hidden;
  height: 100%;
}

.feature-box .top{
  padding: 14px 16px;
  display:flex;
  align-items:center;
  gap:10px;
  font-weight: 800;
  color: #17314d;
  background: linear-gradient(90deg, rgba(26,111,181,.10), transparent);
}

.feature-box .top i{
  color: var(--brand);
}

.feature-box .body{
  padding: 10px 16px 16px;
  color: var(--muted);
  font-size: .95rem;
}

/* Titles */
.section-title{
  font-weight: 900;
  letter-spacing: .2px;
  color:#132a45;
  margin-bottom:.75rem;
}

.section-sub{
  color: var(--muted);
  max-width: 860px;
  margin: 0 auto;
}

.category-heading{
  font-weight:900;
  color:#132338;
}

/* About / mini */
.mini-feature{
  background: var(--card);
  border-radius: 16px;
  padding: 18px 16px;
  box-shadow: 0 14px 35px rgba(16,24,40,.08);
  border: 1px solid rgba(11,79,138,.10);
  height: 100%;
}

.mini-head{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom: 6px;
}

.mini-icon{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 14px;
  background: rgba(26,111,181,.10);
  border: 1px solid rgba(26,111,181,.16);
  flex: 0 0 auto;
}

.mini-icon i{
  font-size: 20px;
  color: var(--brand);
}

.mini-title{
  font-weight: 900;
  margin:0;
  color:#142a45;
}

.mini-feature .d{
  color: var(--muted);
  font-size:.92rem;
  margin:0;
}

/* Feature list */
.feature-list-card{
  height: 100%;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(11,79,138,.10);
  border-radius: 18px;
  padding: 20px 18px;
  box-shadow: 0 16px 36px rgba(16,24,40,.08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.feature-list-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(16,24,40,.12);
  border-color: rgba(26,111,181,.18);
}

.feature-list-icon{
  width: 58px;
  height: 58px;
  min-width: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(26,111,181,.10);
  border: 1px solid rgba(26,111,181,.14);
}

.feature-list-icon i{
  font-size: 24px;
  color: var(--brand2);
}

.feature-list-content h5{
  margin: 0 0 6px;
  font-weight: 900;
  font-size: 1.02rem;
  color: #17314d;
  line-height: 1.25;
}

.feature-list-content p{
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.6;
}

/* Service cards */
.service-card{
  background: var(--card);
  border-radius: 18px;
  border: 1px solid rgba(11,79,138,.10);
  overflow:hidden;
  box-shadow: 0 18px 45px rgba(16,24,40,.10);
  height:100%;
  transition: transform .18s ease, box-shadow .18s ease;
}

.service-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(16,24,40,.14);
}

.service-card .img{
  height: 170px;
  background: #dfe9f5 center/cover no-repeat;
}

.service-card .content{
  padding: 14px 14px 16px;
}

.service-card .name{
  font-weight: 900;
  color:#142a45;
}

.service-card .desc{
  color: var(--muted);
  font-size:.92rem;
}

/* Page hero */
.page-hero{
  min-height: 36vh;
  position: relative;
  color:#fff;
  background:center/cover no-repeat;
  border-bottom: 1px solid rgba(11,79,138,.10);
}

.page-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(1200px 700px at 20% 20%, rgba(26,111,181,.35), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.60), rgba(0,0,0,.35));
}

.page-hero .inner{
  position:relative;
  z-index:2;
  padding: 7rem 0 3rem;
  text-align:center;
}

/* Generic page sections */
.page-top{
  padding-top: 90px;
  padding-bottom: 40px;
  background: radial-gradient(1200px 700px at 20% 0%, #eaf2ff 0%, #f6f8fc 40%, #f3f6fb 100%);
}

.search-card .form-control,
.search-card .btn{
  height:48px;
  border-radius:12px;
}

.search-card .btn-primary:hover{
  background:#155d98;
  border-color:#155d98;
}

.search-card .btn-outline-secondary{
  border-color:#d5dce5;
  color:#44576c;
}

.search-result-box{
  background:#f8fbff;
  border:1px solid #d9e7f5;
  border-radius:14px;
  padding:12px 16px;
  color:#35506b;
}

.article-time{
  font-size:14px;
  color:var(--muted);
}

.article-time b{
  font-size:24px;
  color:#132338;
  margin-right:4px;
}

.sticky-filter{
  position:sticky;
  top:110px;
}

/* Item cards */
.item-card{
  background:#fff;
  border-radius:18px;
  border:1px solid rgba(11,79,138,.10);
  box-shadow:0 18px 45px rgba(16,24,40,.10);
  overflow:hidden;
  height:100%;
  transition:transform .18s ease, box-shadow .18s ease;
}

.item-card:hover{
  transform:translateY(-4px);
  box-shadow:0 26px 60px rgba(16,24,40,.14);
}

.item-img{
  height:220px;
  overflow:hidden;
  background:#eef3f8;
}

.item-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* Detail page */
.detail-page{
  background: radial-gradient(1200px 700px at 20% 0%, #eaf2ff 0%, #f6f8fc 40%, #f3f6fb 100%);
  color:#132338;
  min-height:100vh;
}

.badge-soft{
  background:rgba(26,111,181,.12);
  border:1px solid rgba(26,111,181,.20);
  color:#0f3f66;
}

.heroimg{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(11,79,138,.10);
  box-shadow:0 18px 45px rgba(16,24,40,.10);
  background:#fff;
}

.heroimg .img{
  height:420px;
  background:center/cover no-repeat;
}

.thumb{
  height:92px;
  width:100%;
  border-radius:14px;
  background:center/cover no-repeat;
  border:1px solid rgba(11,79,138,.12);
  cursor:pointer;
  transition:.2s ease;
}

.thumb-active{
  border:2px solid var(--brand);
  box-shadow:0 0 0 3px rgba(26,111,181,.12);
}

.reserve-btn{
  font-weight:700;
  border-radius:14px;
  padding:14px 18px;
}

.contact-box a{
  color:#132338;
}

.similar-card{
  transition:.25s ease;
}

.similar-card:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 48px rgba(16,24,40,.14);
}

.similar-card__image{
  display:block;
  height:210px;
  background:center/cover no-repeat;
}

.similar-title{
  line-height:1.4;
  min-height:48px;
}

/* Transfer */
.transfer-card{
  padding:10px;
}

.transfer-card h5{
  font-size:18px;
}

.transfer-card p{
  line-height:1.5;
}

.transfer-section{
  margin-top: 28px;
  padding: 28px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f4f8fd 0%, #eef4fb 100%);
  border: 1px solid rgba(26, 111, 181, .10);
}

.transfer-note{
  color: #6c7a89;
  font-size: 15px;
}

.transfer-item{
  height: 100%;
  padding: 10px;
}

.transfer-img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:16px;
  box-shadow:0 10px 24px rgba(16,24,40,.08);
}

.transfer-item h5{
  color:#132338;
  font-size:18px;
}

/* Content blocks */
.content-block img{
  max-width:100%;
  height:auto;
  border-radius:12px;
}

.content-block table{
  width:100%;
  display:block;
  overflow-x:auto;
}

/* Responsive */
@media (max-width: 991.98px){
  .nav-glass{
    background: rgba(7,28,49,.82);
  }

  .navbar-collapse{
    margin-top: 12px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .navbar .navbar-nav{
    gap: .2rem;
  }

  .navbar .nav-link{
    padding: .8rem .9rem !important;
  }

  .navbar .nav-item.has-submenu > .nav-link{
    padding-right: 1.8rem !important;
  }

  .navbar .nav-item.has-submenu > .nav-link::before{
    right: .85rem;
  }

  .navbar .dropdown-menu{
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    margin-top: 8px !important;
    border-radius: 12px;
    box-shadow: none;
    background: rgba(255,255,255,.98);
  }

  .hero-slide{
    min-height: 68vh;
  }

  .hero-content{
    padding: 7rem 1rem 5rem;
  }

  .feature-strip{
    margin-top: -28px;
  }

  .page-top{
    padding-top:24px;
    padding-bottom:24px;
  }

  .sticky-filter{
    position:static;
  }

  .heroimg .img{
    height:320px;
  }

  .transfer-section{
    padding: 22px;
  }

  .transfer-img{
    height: 200px;
  }
}

@media (max-width: 767.98px){
  .feature-list-card{
    gap: 14px;
    padding: 18px 16px;
    border-radius: 16px;
  }

  .feature-list-icon{
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
  }

  .feature-list-icon i{
    font-size: 21px;
  }

  .feature-list-content h5{
    font-size: .98rem;
  }

  .feature-list-content p{
    font-size: .92rem;
  }

  .item-img{
    height:200px;
  }
}

@media (max-width: 575.98px){
  .heroimg .img{
    height:240px;
  }

  .thumb{
    height:78px;
  }

  .similar-card__image{
    height:190px;
  }

  .transfer-section{
    padding: 18px;
    border-radius: 16px;
  }

  .transfer-img{
    height: 190px;
  }
}

    #articleGallery,
    #articleGallery .carousel-inner,
    #articleGallery .carousel-item{
        height: 460px;
    }

    .gallery-slide{
        width: 100%;
        height: 100%;
        background-color: #eef3f8;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .thumb-btn{
        width: 100%;
        display: block;
        border: 0;
        padding: 0;
    }

    @media (max-width: 991.98px){
        #articleGallery,
        #articleGallery .carousel-inner,
        #articleGallery .carousel-item{
            height: 340px;
        }
    }

    @media (max-width: 575.98px){
        #articleGallery,
        #articleGallery .carousel-inner,
        #articleGallery .carousel-item{
            height: 240px;
        }
    }
    .gallery-slide{
    cursor: zoom-in;
}
.image-preview-modal{
    background: rgba(7, 16, 28, .78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.image-modal-dialog{
    max-width: min(1100px, calc(100vw - 48px));
    margin: 24px auto;
}

.image-modal-content{
    background: transparent;
    box-shadow: none;
    position: relative;
}

.image-modal-stage{
    position: relative;
    width: 100%;
    min-height: min(78vh, 820px);
    padding: 22px;
    border-radius: 24px;
    background: rgba(17, 28, 43, .88);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 24px 70px rgba(0,0,0,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-modal-img{
    display: block;
    max-width: 100%;
    max-height: calc(78vh - 44px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
}

.image-modal-close{
    position: absolute;
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: .2s ease;
}

.image-modal-close:hover{
    background: rgba(255,255,255,.2);
    transform: scale(1.04);
}

@media (max-width: 991.98px){
    .image-modal-dialog{
        max-width: calc(100vw - 28px);
        margin: 16px auto;
    }

    .image-modal-stage{
        min-height: 70vh;
        padding: 16px;
        border-radius: 20px;
    }

    .image-modal-img{
        max-height: calc(70vh - 32px);
        border-radius: 12px;
    }
}

@media (max-width: 575.98px){
    .image-modal-dialog{
        max-width: calc(100vw - 16px);
        margin: 10px auto;
    }

    .image-modal-stage{
        min-height: 64vh;
        padding: 12px;
        border-radius: 16px;
    }

    .image-modal-img{
        max-height: calc(64vh - 24px);
        border-radius: 10px;
    }

    .image-modal-close{
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
}
.service-card-link{
  text-decoration:none;
  display:block;
  color:inherit;
}

.service-card-link:hover{
  text-decoration:none;
  color:inherit;
}

    .contact-card,
    .contact-form-card{
        position: relative;
    }

    .contact-badge{
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 14px;
        border-radius: 999px;
        background: rgba(26,111,181,.10);
        border: 1px solid rgba(26,111,181,.16);
        color: var(--brand);
        font-size: 13px;
        font-weight: 700;
        letter-spacing: .02em;
    }

    .contact-info-list{
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .contact-info-item2{
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 14px;
        border-radius: 16px;
        background: rgba(248,251,255,.95);
        border: 1px solid rgba(11,79,138,.08);
        transition: .2s ease;
    }

    .contact-info-item2:hover{
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(16,24,40,.08);
    }

    .contact-info-icon{
        width: 42px;
        height: 42px;
        min-width: 42px;
        border-radius: 14px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(26,111,181,.12);
        color: var(--brand);
        border: 1px solid rgba(26,111,181,.16);
        font-size: 18px;
    }

    .contact-note-box{
        padding: 16px 18px;
        border-radius: 18px;
        background: linear-gradient(180deg, rgba(26,111,181,.08), rgba(26,111,181,.04));
        border: 1px solid rgba(26,111,181,.14);
    }

    .contact-socials2 a{
        transition: .2s ease;
    }

    .contact-socials2 a:hover{
        transform: translateY(-2px);
    }

    .contact-steps-wrap{
        border-top: 1px solid rgba(11,79,138,.08);
    }

    .contact-step-item{
        display: flex;
        gap: 14px;
        align-items: flex-start;
        margin-bottom: 14px;
    }

    .contact-step-num{
        width: 38px;
        height: 38px;
        min-width: 38px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(180deg, var(--brand), var(--brand2));
        color: #fff;
        font-weight: 700;
        box-shadow: 0 10px 20px rgba(26,111,181,.25);
    }

    .map-card iframe{
        display: block;
    }

    @media (max-width: 575.98px){
        .contact-info-item2{
            padding: 12px;
            border-radius: 14px;
        }

        .contact-info-icon{
            width: 38px;
            height: 38px;
            min-width: 38px;
            border-radius: 12px;
            font-size: 16px;
        }
    }
    .contact-socials{
    display:flex;
    gap:10px;
}

.social-btn{
    width:44px;
    height:44px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    color:#fff;
    transition:.25s ease;
    box-shadow:0 8px 20px rgba(0,0,0,.12);
}

.social-btn:hover{
    transform:translateY(-3px) scale(1.05);
    box-shadow:0 14px 30px rgba(0,0,0,.18);
}

/* platform colors */

.social-facebook{
    background:#1877F2;
}

.social-instagram{
    background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
}

.social-linkedin{
    background:#0A66C2;
}

.social-whatsapp{
    background:#25D366;
}
.contact-card a,
.contact-form-card a,
.contact-info-item2 a{
    color: #16324d;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: color .2s ease, border-color .2s ease, opacity .2s ease;
}

.contact-card a:hover,
.contact-form-card a:hover,
.contact-info-item2 a:hover{
    color: var(--brand);
    border-bottom-color: rgba(26,111,181,.28);
}

.contact-info-item2 .fw-semibold a{
    display: inline;
    word-break: break-word;
}




.footer{
  background:
    radial-gradient(900px 500px at 20% 0%, rgba(26,111,181,.16), transparent 55%),
    linear-gradient(180deg, #061a2e 0%, #071c31 70%, #06192c 100%);
  color: rgba(255,255,255,.84);
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer a{
  color: rgba(255,255,255,.88);
  text-decoration: none;
  transition: color .2s ease, opacity .2s ease;
}

.footer a:hover{
  color: #fff;
}

.footer .muted{
  color: rgba(255,255,255,.56);
}

.footer-brand{
  padding-right: 18px;
}

.footer-about{
  color: rgba(255,255,255,.64);
  line-height: 1.75;
  max-width: 340px;
  font-size: .95rem;
}

.footer-address-box{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.055);
}

.footer-list{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-info-item{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 13px;
  border-radius: 14px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.05);
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}

.footer-info-item:hover,
.footer-address-box:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.08);
}

.footer-info-icon{
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  font-size: 14px;
}

.footer-info-label{
  font-size: 12px;
  color: rgba(255,255,255,.52);
  margin-bottom: 2px;
  line-height: 1.35;
}

.footer-info-value{
  color: rgba(255,255,255,.94);
  font-weight: 500;
  line-height: 1.55;
  word-break: break-word;
  font-size: .95rem;
}

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer .social{
  gap: 8px !important;
}

.footer .social a{
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.06);
  transition: all .2s ease;
}

.footer .social a:hover{
  background: rgba(255,255,255,.08);
  transform: translateY(-1px);
}

@media (max-width: 991.98px){
  .footer-brand{
    padding-right: 0;
  }
}