.language-switcher {
    --switch-size: 30px; /* 🔽 lebih kecil dari sebelumnya */

    position: relative;
    display: inline-block;
    width: calc(var(--switch-size) * 2);
    height: var(--switch-size);
    /* transform: translateY(40%); */
    transition: transform 0.17s cubic-bezier(0.26, 0.48, 0.08, 0.9);
}

.language-switcher input {
    opacity: 0;
    width: 0;
    height: 0;
}


.slider {
    position: absolute;
    inset: 0;
    cursor: pointer;
    background-color: #1e3470;
    box-shadow: 0 3px 24px rgba(30, 52, 112, 0.12);
    transition: 0.4s;
}

.slider:before {
    content: "";
    position: absolute;
    width: var(--switch-size);
    height: var(--switch-size);
    left: 0;
    top: 0;
    background: #fff;
    box-shadow: 0 3px 24px rgba(30, 52, 112, 0.18);
    transition: 0.4s;
}

input:checked + .slider:before {
    transform: translateX(var(--switch-size));
}

/* rounded */
.slider.round {
    border-radius: var(--switch-size);
}
.slider.round:before {
    border-radius: 50%;
}

.language-switcher .select-fr,
.language-switcher .select-en {
    position: absolute;
    width: var(--switch-size);
    height: var(--switch-size);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: calc(var(--switch-size) * 0.45);
    font-weight: 600;
    color: #fff;
    pointer-events: none;
    mix-blend-mode: difference;
}

/* kiri (ID / FR) */
.language-switcher .select-fr {
    left: calc(var(--switch-size) / 2);
    top: 50%;
    transform: translate(-50%, -50%);
}

/* kanan (EN) */
.language-switcher .select-en {
    left: calc(var(--switch-size) * 1.5);
    top: 50%;
    transform: translate(-50%, -50%);
}

.header-right{
    margin-left: auto; /* 🔥 INI YANG MENDORONG KE KANAN */
    display: flex;
    align-items: center;
    gap: 16px; /* jarak language & button */
    margin-right: 20px
}

.mr-20{
    margin-right: 20px !important;
}


.logo > ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}


.logo > ul > li {
    display: flex;
    align-items: center;
}

.fs {
    font-size: var(--fs) !important;
}

.btn-group {
    display: flex;
    gap: 15px;              /* jarak antar button */
    align-items: center;
    flex-wrap: wrap;        /* aman di mobile */
}



.square-holder {
  padding:20px;
  border: 1px solid #cecece;
  align-items: center;
  display:flex;
  align-items: center;
  justify-content: center;
  margin-bottom:20px;
  background-color:#f1f1f1;
  min-height:160px;
  border-radius: 30px;
}

.square-holder img {
  max-width:100%;
  filter: grayscale(100%);
  transition: all 0.3s;
}

.square-holder:hover img{
  filter:none;
}

.info-preview{
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.title-preview{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}
.news .content-box {
  height: 320px;
}

.news .icon-box .date{
    line-height: 20px;
    font-size: 18px;
    text-align: center;
    font-weight: bold;
}

.map-address-box{
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 20px rgba(0, 0, 0, 0.08);
}

.team-box{
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 20px rgba(0, 0, 0, 0.08);
}

.text-capitalize {
    text-transform: capitalize;
}

.contact-details__info .icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.project-carousel figure.image {
    margin: 0;
    height: 100%;
}

.project-carousel .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* ⬅️ crop, bukan stretch */
    object-position: center;
    display: block;
}

.project-carousel .image-box {
    position: relative;
    height: 260px;        /* ⬅️ tentukan tinggi seragam */
    overflow: hidden;
}

.image-fixed {
    height: 250px;              /* ⬅️ tinggi seragam */
    overflow: hidden;
    display: flex;
}

.image-fixed img {
    width: 100%;
    height: 100%;
    object-fit: cover;          /* ⬅️ crop, tidak stretch */
    object-position: center;
    display: block;
}

.clamp-5 {
    display: -webkit-box;
    -webkit-line-clamp: 5;      /* ⬅️ maksimal 5 baris */
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}

.price.clamp-5 {
    display: -webkit-box !important;
}

.clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;      
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}


.clamp-5 p {
    display: inline;
    margin: 0;
}

.news-block .image-box {
    position: relative;
}

.news-block .image-box .image {
    height: 240px;          /* ⬅️ tinggi seragam */
    overflow: hidden;
}

.news-block .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* ⬅️ tidak stretch */
    object-position: center;
    display: block;
}

.sidebar__post-image {
  width: 80px;              /* bebas, sesuaikan desain */
  aspect-ratio: 1 / 1;      /* BIKIN KOTAK */
  overflow: hidden;
  flex-shrink: 0;
}

.sidebar__post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;        /* POTONG TANPA STRETCH */
  display: block;
}

.inner-box .download {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.inner-box .download img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.radius-30{
    border-radius: 30px !important;
}

.btn-group {
    position: relative;
    z-index: 10;
}

.btn-group a {
    position: relative;
    z-index: 11;
    pointer-events: auto;
}

    #content {
  margin-top: 50px;
  text-align: center;
}

.timeline {
  border-left: 0.25em solid #4298c3;
  background: rgba(255, 255, 255, 0.1);
  margin: 2em auto;
  line-height: 1.4em;
  padding: 1em;
  padding-left: 3em;
  list-style: none;
  text-align: left;
  margin-left: 10em;
  margin-right: 3em;
  border-radius: 0.5em;
  min-width: 22em;
}

.event {
  min-width: 20em;
  width: 100%;
  vertical-align: middle;
  box-sizing: border-box;
  position: relative;
}

.timeline .event:before,
.timeline .event:after {
  position: absolute;
  display: block;
  top: 1em;
}

.timeline .event:before {
  left: -15em;
  color: black;/*rgba(255, 255, 255, 0.8);*/
  content: attr(data-date);
  text-align: right;
  /* font-weight: 100; */
  font-size: 0.9em;
  min-width: 9em;
}

.timeline .event:after {
  box-shadow: 0 0 0 0.2em #4298c3;
  left: -3.5em;
  background: #313534;
  border-radius: 50%;
  height: 0.75em;
  width: 0.75em;
  content: "";
}

.timeline .event .member-location,
.timeline .event .member-parameters {
  display: none;
}

.timeline .event:last-of-type .member-location,
.timeline .event:last-of-type .member-parameters {
  display: block;
}

.member-infos {
  padding: 10px;
  text-align: left;
  position: relative;
}

.member-infos > h1 {
  /* font-weight: bold; */
  font-size: 1.4em;
}

.member-location a:before {
  margin-right: 5px;
}

.member-location {
  text-indent: 2px;
}

.follow,
.options {
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  background: #D3D3D3;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
  box-shadow: 0 2px 0 0 #C0C0C0;
  border-radius: 3px;
  display: inline-block;
}

.follow:hover,
.options:hover {
  box-shadow: 0 1px 0 0 #C0C0C0;
  box-sizing: border-box;
  vertical-align: bottom;
  margin-bottom: -1px;
}

.member-socials {
  display: inline-block;
  /* font-weight: bold; */
  vertical-align: bottom;
  line-height: 8px;
  float: right;
}

.member-socials li {
  display: inline-block;
}

.shots-number,
.followers {
  font-weight: normal;
  display: block;
  margin-top: 10px;
  font-size: 0.9em;
}

.member-contact {
  position: absolute;
  right: 10px;
  top: 10px;
}

.member-contact li {
  display: inline-block;
  margin-left: 10px;
}

.member-shots-number {
  padding-right: 6px;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  margin-right: 6px;
  margin-left: 6px;
}

.footer-widget.gallery-widget .outer {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 kolom */
    gap: 6px;
}

.footer-widget.gallery-widget figure.image {
    position: relative;
    width: 100%;
    padding-top: 100%;   /* bikin kotak */
    margin: 0;           /* HILANGKAN default figure margin */
    overflow: hidden;
}

.footer-widget.gallery-widget figure.image a {
    position: absolute;
    inset: 0;
    display: block;
    border-radius: 10px;
}

.footer-widget.gallery-widget figure.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* tidak stretch */
    display: block;
}

.column-fix {
	width: 1%;
	white-space: nowrap;
}

.product-wrap {
    display: flex;
    align-items: flex-start; /* sejajar atas */
    gap: 10px; /* jarak gambar dan teks */
}

.product-wrap img {
    width: 60px; /* sesuaikan */
    height: auto;
}

.product-text a {
    display: block; /* bikin new line */
}

.new-account {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.new-account p {
    margin: 0; /* biar benar-benar mepet kiri */
}

.new-account .ui-btn {
    margin: 0; /* hapus jarak kanan/kiri */
}

.otp-input {
    font-size: 20px;
    font-weight: bold;
}

.cursor-pointer{
    cursor: pointer;
}