/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )
-----------------------------------------*/
:root {
  --white-color: #ffffff;
  --primary-color: #535da1;
  --secondary-color: #14B789;
  --section-bg-color: #f9f9f9;
  --dark-color: #000000;
  --p-color: #717275;
  --border-color: #e9eaeb;
  --featured-border-color: #727aab;

  --body-font-family: 'DM Sans', sans-serif;

  --h1-font-size: 62px;
  --h2-font-size: 48px;
  --h3-font-size: 36px;
  --h4-font-size: 32px;
  --h5-font-size: 24px;
  --h6-font-size: 22px;
  --p-font-size: 18px;
  --menu-font-size: 12px;
  --copyright-font-size: 14px;

  --border-radius-large: 100px;
  --border-radius-medium: 20px;
  --border-radius-small: 10px;

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
}

body {
  background: var(--white-color);
  font-family: var(--body-font-family);
  overflow-x: hidden;
}


/*---------------------------------------
  TYPOGRAPHY
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
  letter-spacing: -1px;
}

h1 {
  font-size: var(--h1-font-size);
  letter-spacing: -3px;
}

h2 {
  font-size: var(--h2-font-size);
  color: var(--secondary-color);
  letter-spacing: -3px;
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
  line-height: normal;
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color: var(--secondary-color);
}

::selection {
  background: var(--secondary-color);
  color: var(--white-color);
}

::-moz-selection {
  background: var(--secondary-color);
  color: var(--white-color);
}

.section-padding {
  padding-top: 120px;
  padding-bottom: 120px;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.section-title-wrap {
  background: var(--secondary-color);
  border-radius: var(--border-radius-small);
  padding: 10px 30px;
  display: inline-flex;
  align-items: center;
  max-width: 100%;
}


/*---------------------------------------
  AVATAR IMAGE
-----------------------------------------*/
.avatar-image {
  border-radius: var(--border-radius-large);
  width: 160px;
  height: 160px;
  object-fit: cover;
  max-width: 100%;
}

.avatar-image-large {
  width: 90.4px;
  height: 90.4px;
}


/*---------------------------------------
  PRE LOADER
-----------------------------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background: none repeat scroll 0 0 var(--white-color);
}

.spinner {
  width: 60px;
  height: 60px;
  position: relative;
}

.spinner:before,
.spinner:after {
  content: "";
  display: block;
  position: absolute;
  border-width: 4px;
  border-style: solid;
  border-radius: 50%;
}

.spinner:before {
  width: 100%;
  height: 100%;
  border-color: var(--secondary-color) transparent transparent transparent;
  animation: spinner 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.spinner:after {
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
  border-color: transparent var(--primary-color) transparent transparent;
  animation: spinner 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite reverse;
}

@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/*---------------------------------------
  CUSTOM ICON
-----------------------------------------*/
.navbar-icon {
  background: var(--white-color);
  border-radius: var(--border-radius-large);
  color: var(--dark-color);
  width: 47px;
  height: 47px;
  line-height: 47px;
  text-align: center;
  font-size: 1.2rem;
}

.is-sticky .navbar-icon {
  background: var(--secondary-color);
  color: var(--white-color);
}

.form-check-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM BUTTON
-----------------------------------------*/
.custom-btn,
.navbar .custom-btn {
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-bold);
  white-space: nowrap;
}

.navbar .custom-btn {
  background: transparent;
  border-width: 2px;
  border-style: solid;
  border-color: var(--white-color);
  color: var(--white-color);
  padding: 8px 22px;
}

.navbar .custom-btn:hover {
  background: var(--white-color);
  border-color: transparent;
  color: var(--secondary-color);
}

.custom-btn {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  padding: 12px 24px;
  display: inline-block;
  text-align: center;
}

.custom-btn:hover {
  background: var(--primary-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--p-color);
}

.custom-border-btn:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white-color);
}

.custom-link {
  background-color: var(--primary-color);
}

.custom-link:hover {
  background-color: var(--secondary-color);
}


/*---------------------------------------
  NAVIGATION (VERSI LAMA DENGAN RESPONSIF)
-----------------------------------------*/
.sticky-wrapper {
  position: relative;
  z-index: 222;
  height: auto !important;
}

.is-sticky,
.is-sticky .navbar .container {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 18%);
}

.is-sticky .navbar-brand,
.is-sticky .navbar-brand:hover {
  color: var(--dark-color);
}

.is-sticky .navbar-nav .nav-link {
  color: var(--p-color);
}

.is-sticky .navbar .custom-btn {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.is-sticky .navbar .custom-btn:hover {
  background: var(--secondary-color);
  color: var(--white-color);
}

/* NAVBAR UTAMA - SAMA SEPERTI SEBELUMNYA */
.navbar {
  background: transparent;
  position: absolute;
  z-index: 9;
  right: 0;
  left: 0;
  transition: all 0.3s;
  padding-top: 15px;
  padding-bottom: 0;
}

.navbar .container {
  border-radius: var(--border-radius-small);
  padding: 10px 25px;
}

.navbar-brand {
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--white-color);
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
  margin-right: 20px;
  margin-left: 20px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--section-bg-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link::after {
  content: "";
  background: transparent;
  position: absolute;
  bottom: 6px;
  right: 0;
  left: 0;
  width: 100%;
  height: 2px;
}

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
  background: var(--secondary-color);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--secondary-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

/* CUSTOM ICON (SAMA) */
.navbar-icon {
  background: var(--white-color);
  border-radius: var(--border-radius-large);
  color: var(--dark-color);
  width: 47px;
  height: 47px;
  line-height: 47px;
  text-align: center;
}

.is-sticky .navbar-icon {
  background: var(--secondary-color);
  color: var(--white-color);
}

/* CUSTOM BUTTON (SAMA) */
.custom-btn,
.navbar .custom-btn {
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar .custom-btn {
  background: transparent;
  border-width: 2px;
  border-style: solid;
  border-color: var(--white-color);
  color: var(--white-color);
  padding: 8px 22px;
}

.navbar .custom-btn:hover {
  background: var(--white-color);
  border-color: transparent;
  color: var(--secondary-color);
}

/* RESPONSIVE FIXES UNTUK NAVBAR */
@media screen and (max-width: 991px) {

  /* Navbar container */
  .navbar .container {
    background: var(--white-color);
  }

  /* Logo dan brand */
  .navbar-brand,
  .navbar-brand:hover {
    color: var(--dark-color);
  }

  /* Icon telepon di navbar - Sembunyikan di mobile */
  .navbar-icon {
    display: none !important;
  }

  /* Tombol custom di navbar - Sembunyikan di mobile */
  .navbar .custom-btn {
    display: none !important;
  }

  /* Hamburger icon */
  .navbar-toggler .navbar-toggler-icon,
  .navbar-toggler .navbar-toggler-icon:before,
  .navbar-toggler .navbar-toggler-icon:after {
    background: var(--dark-color);
  }

  /* Menu items */
  .navbar-expand-lg .navbar-nav .nav-link {
    margin-left: 0;
  }

  .navbar-nav .nav-link {
    color: var(--p-color);
    padding-top: 10px;
    padding-bottom: 10px;
  }

  /* Sembunyikan semua elemen telepon di navbar mobile */
  .d-lg-flex.align-items-center.d-none.ms-auto,
  .d-flex.align-items-center.d-lg-none {
    display: none !important;
  }

  /* Sticky state untuk mobile */
  .is-sticky .navbar-toggler .navbar-toggler-icon,
  .is-sticky .navbar-toggler .navbar-toggler-icon:before,
  .is-sticky .navbar-toggler .navbar-toggler-icon:after {
    background: var(--dark-color);
  }
}

@media screen and (max-width: 575px) {
  .navbar .container {
    margin-right: 12px;
    margin-left: 12px;
    padding: 10px 15px;
  }

  .navbar-brand img {
    height: 40px;
  }
}

@media screen and (max-width: 480px) {
  .navbar-icon {
    font-size: var(--copyright-font-size);
    width: 35.5px;
    height: 35.5px;
    line-height: 35.5px;
  }

  .navbar .custom-btn {
    font-size: 13px;
    padding: 6px 12px;
  }
}


/*---------------------------------------
  HERO
-----------------------------------------*/
.hero {
  background: var(--secondary-color);
  position: relative;
  overflow: hidden;
  padding-top: 200px;
  padding-bottom: 200px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-title,
.hero h2 {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
  border-radius: var(--border-radius-large);
  display: inline-block;
  padding: 8px 24px;
  word-break: break-word;
}

.hero-title {
  font-size: 44px;
  margin-bottom: 10px;
}

.hero h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

.hero-text {
  position: relative;
  z-index: 22;
}

.hero-image-wrap {
  background: var(--white-color);
  border-radius: 100%;
  width: 350px;
  height: 350px;
  position: absolute;
  z-index: 22;
  top: -50px;
  right: 0;
  left: 0;
  margin: auto;
  pointer-events: none;
}

.hero-image {
  position: relative;
  z-index: 22;
  width: 100%;
  max-width: 550px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.hero svg {
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  left: 0;
  overflow: hidden;
  height: 100%;
  pointer-events: none;
}

/* Hero untuk mobile */
.hero .row {
  align-items: center;
}

/* Decorative Comment Bubbles */
.hero-comment-bubble {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-color);
  z-index: 25;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 250px;
  animation: float-bubble 3s ease-in-out infinite;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-comment-bubble i {
  color: var(--secondary-color);
  font-size: 18px;
}

.bubble-1 {
  top: 30%;
  right: 15%;
  animation-delay: 0s;
}

.bubble-2 {
  bottom: 25%;
  right: 10%;
  animation-delay: 1.5s;
}

.bubble-3 {
  bottom: 45%;
  right: 5%;
  left: auto;
  animation-delay: 0.8s;
}

@keyframes float-bubble {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

@media screen and (max-width: 991px) {
  .hero-comment-bubble {
    display: none;
  }
}


/*---------------------------------------
  ABOUT - RESPONSIF TAPI TETAP SAMA DENGAN ASLI
-----------------------------------------*/
.profile-thumb {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.profile-title {
  border-bottom: 1px solid var(--border-color);
  padding: 15px 30px;
}

.profile-small-title {
  border-right: 1px solid var(--border-color);
  color: var(--secondary-color);
  font-weight: var(--font-weight-bold);
  min-width: 140px;
  margin-right: 10px;
  padding: 13px 30px;
  display: inline-block;
}

/* Alternatif dengan flexbox tanpa mengubah background */
.profile-body p {
  margin-bottom: 0;
  display: flex;
}

.profile-small-title {
  border-right: 1px solid var(--border-color);
  color: var(--secondary-color);
  font-weight: var(--font-weight-bold);
  min-width: 180px;
  /* Lebar minimum */
  width: 180px;
  /* Lebar tetap */
  margin-right: 10px;
  padding: 13px 30px;
  display: inline-block;
  flex-shrink: 0;
  /* Agar tidak mengecil */
}

.profile-body p span:last-child {
  padding: 13px 0;
  /* Padding vertikal sama, horizontal dihapus */
  display: flex;
  align-items: center;
}

.profile-body p:nth-of-type(even) {
  background: var(--white-color);
}

.about-image {
  border-radius: var(--border-radius-medium);
  width: 100%;
  height: auto;
}

.about-thumb {
  padding-right: 40px;
  /* naikkan dari 20px ke 40px */
  padding-left: 40px;
  /* naikkan dari 20px ke 40px */
  min-height: 400px;
  align-items: center;
}

/* RESPONSIVE STYLES UNTUK ABOUT SECTION */

/* Tablet (≤991px) */
@media screen and (max-width: 991px) {
  .about-thumb {
    padding-right: 20px;
    padding-left: 20px;
    min-height: 350px;
  }

  .profile-small-title {
    min-width: 160px;
    width: 160px;
    padding: 13px 20px;
  }

  .profile-body p span:last-child {
    padding: 13px 10px;
  }

  .about-image {
    max-height: 400px;
    object-fit: cover;
  }
}

/* Mobile (≤768px) */
@media screen and (max-width: 768px) {
  .about .row {
    flex-direction: column;
  }

  .about .col-lg-6:first-child {
    margin-bottom: 30px;
  }

  .about .col-lg-6:last-child {
    margin-top: 0 !important;
  }

  .about-thumb {
    padding: 0;
    min-height: auto;
    align-items: flex-start;
  }

  .about-image {
    max-height: 350px;
    width: 100%;
  }

  /* Section title wrap di mobile */
  .section-title-wrap {
    justify-content: center;
    width: 100%;
  }
}

/* Mobile Kecil (≤575px) */
@media screen and (max-width: 575px) {
  .profile-body p {
    flex-direction: column;
  }

  .profile-small-title {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    min-width: 100%;
    margin-right: 0;
    text-align: center;
    padding: 10px 15px;
  }

  .profile-body p span:last-child {
    padding: 10px 15px;
    text-align: center;
    justify-content: center;
  }

  .profile-body p:nth-of-type(even) {
    background: var(--white-color);
  }

  .about-image {
    max-height: 300px;
  }

  .section-title-wrap {
    flex-direction: column;
    text-align: center;
    padding: 10px 20px;
  }

  .section-title-wrap h2 {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .avatar-image {
    width: 120px;
    height: 120px;
  }
}

/* Extra Small Mobile (≤375px) */
@media screen and (max-width: 375px) {
  .profile-title {
    padding: 12px 20px;
  }

  .profile-small-title,
  .profile-body p span:last-child {
    padding: 8px 12px;
  }

  .about-image {
    max-height: 250px;
  }
}

/* Featured Section Responsif */
@media screen and (max-width: 768px) {
  .featured .row {
    flex-direction: column;
  }

  .featured .col-lg-6:last-child {
    margin-top: 30px !important;
  }

  .featured-border-start {
    border-left: none !important;
  }

  .featured .row>.col-lg-6 .row>div {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
  }

  .featured .row>.col-lg-6 .row>div:last-child {
    border-bottom: none;
  }

  .featured-numbers {
    font-size: 2.5rem;
  }
}

/* Clients Section Responsif */
@media screen and (max-width: 768px) {
  .clients .row {
    justify-content: center;
  }

  .clients-item-height {
    width: 33.333%;
    padding: 10px;
  }
}

@media screen and (max-width: 575px) {
  .clients-item-height {
    width: 50%;
  }
}

/* Desktop (≥992px) - Pertahankan gaya asli */
@media screen and (min-width: 992px) {
  .about-thumb {
    min-height: 400px;
    align-items: center;
  }

  .featured-numbers {
    font-size: var(--h1-font-size);
  }
}

/*---------------------------------------
  FEATURED
-----------------------------------------*/
.featured-numbers {
  font-size: var(--h1-font-size);
  line-height: normal;
  display: block;
}

.featured-text {
  color: var(--secondary-color);
  font-size: 1rem;
}

.featured-border-bottom {
  border-bottom: 1px solid var(--border-color);
}

.featured-border-start {
  border-left: 1px solid var(--border-color);
}

/* Featured untuk mobile */
.featured .row>div {
  margin-bottom: 20px;
}

.featured-border-start {
  border-left: none !important;
}


/*---------------------------------------
  CLIENTS
-----------------------------------------*/
.clients-item-height {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.clients-image {
  display: block;
  max-width: 100%;
  max-height: 80px;
  margin: auto;
  transition: all ease 0.2s;
  object-fit: contain;
}

.clients-image:hover {
  transform: scale(1.3);
}


/*---------------------------------------
  SERVICES
-----------------------------------------*/
.services,
.featured {
  background: var(--section-bg-color);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.services-thumb {
  background: var(--white-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  padding: 30px 20px 200px 20px;
  transition: all 0.5s;
  height: 100%;
  min-height: 420px;
  display: flex;
  flex-direction: column;
}

.services-thumb:hover {
  border: 2px solid var(--secondary-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
}

.services-thumb:hover .services-icon-wrap {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white-color);
}

.services-icon-wrap {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-small);
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 55%;
  transform: rotate(-35deg) translateY(55px);
  transition: all ease 0.5s;
}

.services-icon {
  font-size: 60px;
  position: relative;
  bottom: 15px;
}

.services-thumb:hover .services-price-wrap {
  background: var(--secondary-color);
}

.services-thumb:hover .services-price-overlay {
  background: var(--primary-color);
}

/* Price yang lebih kecil */
.services-price-wrap {
  background: var(--primary-color);
  border-radius: var(--border-radius-small);
  position: absolute;
  top: 15px;
  right: 15px;
  overflow: hidden;
  padding: 5px 12px 5px 10px;
  transition: all ease 0.5s;
  z-index: 2;
  min-width: 60px;
}

.services-price-text {
  color: var(--white-color);
  font-size: 0.85rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
}

.services-price-overlay {
  background: var(--secondary-color);
  border-bottom-left-radius: 100%;
  position: absolute;
  top: 0;
  right: 0;
  width: 15px;
  height: 15px;
  pointer-events: none;
}

/* Perbaiki struktur heading */
.services-thumb .d-flex {
  flex-direction: column;
  align-items: flex-start;
}

.services-thumb h3 {
  margin-bottom: 10px;
  width: 100%;
  padding-right: 80px;
  font-size: 1.5rem;
  line-height: 1.3;
}

/* Tambahkan CSS untuk memastikan card rapi */
.row {
  align-items: stretch;
}

.col-lg-4,
.col-md-6 {
  display: flex;
}

.col-lg-4>.services-thumb,
.col-md-6>.services-thumb {
  width: 100%;
}


/* Warna untuk setiap jurusan */

/* Desain Komunikasi Visual - Abu-abu */
.dkv-card .services-price-wrap {
  background: #808080 !important;
}

.dkv-card .services-price-overlay {
  background: #696969 !important;
}

.dkv-card:hover .services-price-wrap {
  background: #696969 !important;
}

.dkv-card:hover .services-price-overlay {
  background: #808080 !important;
}

/* Manajemen Perkantoran - Cream */
.mp-card .services-price-wrap {
  background: #FFFDD0 !important;
}

.mp-card .services-price-overlay {
  background: #F5E8AA !important;
}

.mp-card .services-price-text {
  color: #333 !important;
}

.mp-card:hover .services-price-wrap {
  background: #F5E8AA !important;
}

.mp-card:hover .services-price-overlay {
  background: #FFFDD0 !important;
}

/* Bisnis Digital - Kuning */
.bd-card .services-price-wrap {
  background: #FFD700 !important;
}

.bd-card .services-price-overlay {
  background: #DAA520 !important;
}

.bd-card .services-price-text {
  color: #333 !important;
}

.bd-card:hover .services-price-wrap {
  background: #DAA520 !important;
}

.bd-card:hover .services-price-overlay {
  background: #FFD700 !important;
}

/* Kuliner - Hijau Tosca */
.kuliner-card .services-price-wrap {
  background: #40E0D0 !important;
}

.kuliner-card .services-price-overlay {
  background: #20B2AA !important;
}

.kuliner-card:hover .services-price-wrap {
  background: #20B2AA !important;
}

.kuliner-card:hover .services-price-overlay {
  background: #40E0D0 !important;
}

/* Akuntansi Keuangan - Hijau Mint */
.ak-card .services-price-wrap {
  background: #98FF98 !important;
}

.ak-card .services-price-overlay {
  background: #77DD77 !important;
}

.ak-card .services-price-text {
  color: #333 !important;
}

.ak-card:hover .services-price-wrap {
  background: #77DD77 !important;
}

.ak-card:hover .services-price-overlay {
  background: #98FF98 !important;
}

/* Services untuk mobile */
.services .row {
  margin: 0 -10px;
}

.services .col-lg-4,
.services .col-md-6,
.services .col-12 {
  padding: 0 10px;
}


/*---------------------------------------
  CONTACT
-----------------------------------------*/
.contact {
  background: var(--section-bg-color);
  padding-top: 120px;
  padding-bottom: 120px;
}

/* Pastikan container Bootstrap berfungsi dengan baik */
.contact .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Untuk desktop: buat konten berada di tengah */
@media screen and (min-width: 992px) {
  .contact .row {
    justify-content: center;
  }

  .contact .col-lg-6.col-md-8.col-12 {
    width: 50%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    float: none;
  }

  .contact .clearfix {
    clear: both;
  }

  /* Buat kedua kolom info kontak sejajar horizontal */
  .contact .col-lg-3.col-md-6.col-12 {
    flex: 1;
    max-width: none;
  }

  .contact .col-lg-3.col-md-6.col-12.pe-lg-0 {
    padding-right: 0 !important;
  }

  .contact .col-lg-3.col-md-6.col-12.ps-lg-0 {
    padding-left: 0 !important;
  }
}

/* Update styling contact-info */
.contact-info {
  background: var(--white-color);
  border-radius: var(--border-radius-small);
  padding: 40px 30px;
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-info-border-start {
  border-right: 1px solid var(--border-color);
  border-radius: var(--border-radius-small) 0 0 var(--border-radius-small);
}

/* Section title styling - center align */
.section-title-wrap {
  background: var(--secondary-color);
  border-radius: var(--border-radius-small);
  padding: 15px 30px;
  margin-bottom: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
}

/* Responsive styles - keep existing */
@media screen and (max-width: 991px) {
  .contact-info {
    border-radius: var(--border-radius-small);
    margin-bottom: 20px;
    padding: 30px 20px;
  }

  .contact-info-border-start {
    border-right: 0;
    border-bottom: 1px solid var(--border-color);
    border-radius: var(--border-radius-small);
  }

  /* Untuk mobile: center semua */
  .contact .row {
    justify-content: center;
  }

  .contact .col-lg-6.col-md-8.col-12 {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
  }

  .section-title-wrap {
    width: 100%;
    max-width: 400px;
  }
}

@media screen and (max-width: 480px) {
  .contact {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .contact .container {
    padding: 0 15px;
  }

  .contact-info {
    padding: 25px 15px;
  }

  .section-title-wrap {
    padding: 12px 20px;
    flex-direction: column;
    text-align: center;
  }

  .section-title-wrap h2 {
    margin-left: 0 !important;
    margin-top: 15px;
  }
}


/*---------------------------------------
  SITE FOOTER
-----------------------------------------*/
.site-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
}

.site-footer-title {
  font-size: var(--menu-font-size);
  color: var(--dark-color);
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}

.copyright-text-wrap p,
.copyright-text {
  font-size: var(--copyright-font-size);
}

.copyright-text {
  border-right: 1px solid var(--border-color);
  padding-right: 15px;
  margin-right: 10px;
}

.copyright-text-wrap a {
  font-weight: var(--font-weight-bold);
}

/* Footer responsive */
.site-footer .row {
  justify-content: center;
}


/*---------------------------------------
  RESPONSIVE STYLES - TABLET
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .hero {
    padding-top: 150px;
    padding-bottom: 150px;
    min-height: auto;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero h2 {
    font-size: 30px;
  }

  .hero-image-wrap {
    width: 300px;
    height: 300px;
  }

  .about-thumb {
    padding-right: 0;
    padding-left: 0;
    margin-top: 30px;
  }

  .profile-small-title {
    min-width: 150px;
    width: 150px;
  }

  .featured-numbers {
    font-size: 42px;
  }

  .services-thumb {
    min-height: 380px;
    padding-bottom: 180px;
  }

  .services-icon {
    font-size: 50px;
  }

  .navbar-collapse {
    margin-top: 15px;
  }

  .navbar .d-lg-flex {
    margin-top: 15px;
    justify-content: center;
  }

  .contact-info {
    padding: 25px 15px;
  }

  .contact-info-border-start {
    border-right: 0;
    border-bottom: 1px solid var(--border-color);
    border-radius: var(--border-radius-small) var(--border-radius-small) 0 0;
  }
}


/*---------------------------------------
  RESPONSIVE STYLES - MOBILE
-----------------------------------------*/
@media screen and (max-width: 768px) {
  h1 {
    font-size: 36px;
    letter-spacing: -1px;
  }

  h2 {
    font-size: 28px;
    letter-spacing: -1px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 18px;
  }

  p {
    font-size: 16px;
  }

  .section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .hero-title {
    font-size: 28px;
    padding: 6px 15px;
  }

  .hero h2 {
    font-size: 24px;
    padding: 6px 15px;
  }

  .hero-image-wrap {
    width: 250px;
    height: 250px;
    top: -30px;
  }

  .hero .row>div:first-child {
    order: 2;
    text-align: center;
  }

  .hero .row>div:last-child {
    order: 1;
    margin-bottom: 30px;
  }

  .hero-title-wrap {
    justify-content: center;
  }

  .about .row>div:first-child {
    margin-bottom: 30px;
  }

  .profile-body p {
    flex-direction: column;
  }

  .profile-small-title {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    min-width: 100%;
    margin-right: 0;
    padding: 10px 20px;
  }

  .profile-body p span:last-child {
    padding: 10px 20px;
    min-width: 100%;
  }

  .featured .row>div {
    margin-bottom: 15px;
    padding: 15px 0;
  }

  .featured-border-bottom {
    border-bottom: 1px solid var(--border-color);
  }

  .featured-numbers {
    font-size: 32px;
  }

  .services-thumb {
    min-height: 350px;
    padding: 25px 15px 150px 15px;
    margin-bottom: 20px;
  }

  .services-thumb h3 {
    font-size: 1.3rem;
    padding-right: 60px;
  }

  .services-icon {
    font-size: 40px;
  }

  .services-icon-wrap {
    width: 45%;
    height: 50%;
  }

  .clients-item-height {
    height: 100px;
    padding: 10px;
  }

  .clients-image {
    max-height: 60px;
  }

  .section-title-wrap {
    padding: 10px 15px;
    flex-direction: column;
    text-align: center;
  }

  .section-title-wrap h2 {
    margin-left: 0 !important;
    margin-top: 10px;
    font-size: 1.5rem;
  }

  .avatar-image {
    width: 120px;
    height: 120px;
  }

  .navbar .container {
    padding: 10px 15px;
  }

  .navbar-brand img {
    height: 40px;
  }

  .custom-btn,
  .navbar .custom-btn {
    font-size: 14px;
    padding: 8px 16px;
  }

  .contact-info {
    padding: 20px 15px;
  }

  .site-footer {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .copyright-text {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    display: block;
    margin-bottom: 10px;
  }
}

<<<<<<< HEAD

/*---------------------------------------
  JURUSAN LIST STYLES
-----------------------------------------*/
.jurusan-list {
  background: var(--section-bg-color);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.jurusan-item {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 25px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 15px oklch(0% 0 0 / 0.08);
  overflow: hidden;
}

.jurusan-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px #20B2AA;
}

/* Styling untuk gambar jurusan */
.jurusan-image-wrapper {
  position: relative;
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  height: 200px;
}

.jurusan-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.jurusan-item:hover .jurusan-image {
  transform: scale(1.05);
}

.jurusan-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 15px 20px;
  color: var(--white-color);
}

.jurusan-header {
  display: flex;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--border-color);
}

.jurusan-icon {
  background: var(--secondary-color);
  color: var(--white-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.jurusan-title {
  color: var(--dark-color);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-bold);
}

.jurusan-body {
  padding-top: 15px;
}

.jurusan-body p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--p-color);
}

.jurusan-details {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  padding: 15px;
}

.detail-item {
  padding: 8px 0;
  border-bottom: 1px dashed var(--border-color);
  font-size: 14px;
  color: var(--p-color);
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-item strong {
  color: var(--secondary-color);
  min-width: 120px;
  display: inline-block;
}

/* Warna khusus untuk setiap jurusan berdasarkan ikon */
.jurusan-item:nth-child(1) .jurusan-icon {
  background: #20B2AA;
  /* Abu-abu untuk DKV */
}

.jurusan-item:nth-child(2) .jurusan-icon {
  background: #20B2AA;
  /* Cream untuk MP */
  color: #333;
}

.jurusan-item:nth-child(3) .jurusan-icon {
  background: #20B2AA;
  /* Kuning untuk Bisnis Digital */
  color: #333;
}

.jurusan-item:nth-child(4) .jurusan-icon {
  background: #20B2AA;
  /* Hijau tosca untuk Kuliner */
}

.jurusan-item:nth-child(5) .jurusan-icon {
  background: #20B2AA;
  /* Hijau mint untuk Akuntansi */
  color: #333;
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
  .jurusan-item {
    padding: 20px;
  }

  .jurusan-image-wrapper {
    height: 180px;
  }

  .jurusan-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .jurusan-item {
    margin-bottom: 25px;
  }

  .jurusan-image-wrapper {
    height: 160px;
  }

  .detail-item strong {
    min-width: 100px;
  }
}

=======
/*---------------------------------------
  RESPONSIVE STYLES - EXTRA SMALL
-----------------------------------------*/
@media screen and (max-width: 480px) {
  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero h2 {
    font-size: 20px;
  }

  .hero-image-wrap {
    width: 200px;
    height: 200px;
  }

  .featured-numbers {
    font-size: 28px;
  }

  .navbar .d-flex {
    flex-direction: column;
    gap: 10px;
  }

  .navbar-icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 1rem;
  }

  .services .col-md-6 {
    width: 100%;
  }

  .contact .row {
    margin: 0;
  }

  .contact .col-lg-3.col-md-6.col-12 {
    padding: 0;
  }
}


/*---------------------------------------
  UTILITY CLASSES
-----------------------------------------*/
.text-center {
  text-align: center;
}

.mt-5 {
  margin-top: 3rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.justify-content-center {
  justify-content: center !important;
}

.align-items-center {
  align-items: center !important;
}

.flex-column {
  flex-direction: column !important;
}

.w-100 {
  width: 100% !important;
}


/*---------------------------------------
  PRINT STYLES
-----------------------------------------*/
@media print {

  .navbar,
  .hero svg,
  .custom-btn,
  .footer-menu,
  .social-icon,
  .preloader {
    display: none !important;
  }

  body {
    font-size: 12pt;
  }

  .container {
    width: 100%;
    max-width: 100%;
  }
}

>>>>>>>d43bfc4ceb000e20954228dd479d3fb08ef1b7bb

/*---------------------------------------
  CONTACT SECTION STYLES
-----------------------------------------*/
.contact-wrapper {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
}

.contact-section {
  height: 100%;
}

.contact-title {
  color: var(--dark-color);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-bold);
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 10px;
  display: inline-block;
}

.footer-menu {
  list-style: none;
  padding-left: 0;
}

.footer-menu-link {
  color: var(--p-color);
  text-decoration: none;
  transition: all 0.3s;
  padding: 8px 15px;
  border-radius: var(--border-radius-small);
  display: block;
}

.footer-menu-link:hover {
  background: var(--section-bg-color);
  color: var(--secondary-color);
  padding-left: 20px;
}

.contact-info-item {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  padding: 15px 20px;
  transition: all 0.3s;
}

.contact-info-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-title {
  color: var(--dark-color);
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  margin-bottom: 5px;
}

.contact-link {
  color: var(--p-color);
  text-decoration: none;
  transition: all 0.3s;
}

.contact-link:hover {
  color: var(--secondary-color);
}

/* Social Media Colors */
.bg-instagram {
  background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
  color: white;
}

.bg-twitter {
  background: #1DA1F2;
  color: white;
}

.bg-facebook {
  background: #4267B2;
  color: white;
}

.bg-youtube {
  background: #FF0000;
  color: white;
}

.social-icon-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
}

.social-icon-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles untuk Contact */
@media screen and (max-width: 991px) {
  .contact-section {
    padding: 0 !important;
  }

  .border-start {
    border-left: none !important;
    border-top: 2px solid var(--border-color);
    padding-top: 30px;
    margin-top: 30px;
  }

  .contact-wrapper {
    padding: 25px !important;
  }
}

@media screen and (max-width: 768px) {
  .contact-info-item {
    padding: 12px 15px;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
  }

  .social-icon-link {
    width: 40px;
    height: 40px;
  }
}

/*---------------------------------------
  MINIMALIST INFORMATION SECTION
-----------------------------------------*/
.featured {
  padding: 60px 0;
  background: var(--section-bg-color);
}

.profile-thumb {
  background: white;
  border-radius: 10px;
  padding: 0;
  border: 1px solid #eee;
}

.profile-title {
  background: var(--secondary-color);
  padding: 15px 20px;
  border-radius: 10px 10px 0 0;
}

.profile-title h4 {
  color: white;
  margin: 0;
  font-size: 18px;
}

.profile-body p {
  display: flex;
  padding: 12px 20px;
  border-bottom: 1px solid #eee;
  margin: 0;
}

.profile-body p:last-child {
  border-bottom: none;
}

.profile-small-title {
  width: 150px;
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 20px;
}

.profile-body span:last-child {
  flex: 1;
  color: #666;
}

/* Featured stats */
.featured-numbers {
  font-size: 80px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.featured-text {
  color: #333;
  font-size: 20px;
}

/* Mobile */
@media (max-width: 768px) {
  .profile-body p {
    flex-direction: column;
  }

  .profile-small-title {
    width: 100%;
    margin-bottom: 5px;
  }

  .featured-numbers {
    font-size: 28px;
  }
}

/*---------------------------------------
  GALLERY STYLES
-----------------------------------------*/
.gallery {
  background: var(--white-color);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  height: 200px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  color: var(--white-color);
  font-size: 14px;
  font-weight: var(--font-weight-medium);
  text-align: center;
}

/* Responsive Gallery */
@media screen and (max-width: 991px) {
  .gallery-item {
    height: 180px;
  }
}

@media screen and (max-width: 768px) {
  .gallery-item {
    height: 150px;
  }

  .gallery .col-lg-3 {
    width: 50%;
  }
}

@media screen and (max-width: 480px) {
  .gallery-item {
    height: 120px;
  }

  .gallery-caption {
    font-size: 12px;
  }
}

/*---------------------------------------
  RESPONSIVE DESIGN
-----------------------------------------*/
@media (max-width: 1200px) {
  :root {
    --h1-font-size: 52px;
    --h2-font-size: 42px;
    --h3-font-size: 32px;
    --h4-font-size: 28px;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero h2 {
    font-size: 32px;
  }
}

@media (max-width: 992px) {
  :root {
    --h1-font-size: 48px;
    --h2-font-size: 36px;
    --h3-font-size: 28px;
    --h4-font-size: 24px;
  }

  .hero {
    padding: 120px 0 80px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero h2 {
    font-size: 28px;
  }

  .section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .about-thumb,
  .profile-thumb {
    margin-top: 30px;
  }

  .border-start {
    border-left: none !important;
    border-top: 2px solid var(--border-color);
    padding-top: 40px;
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --h1-font-size: 36px;
    --h2-font-size: 30px;
    --h3-font-size: 24px;
    --h4-font-size: 20px;
    --p-font-size: 16px;
  }

  .hero {
    padding: 100px 0 60px;
    text-align: center;
  }

  .hero-title-wrap {
    justify-content: center;
    flex-direction: column;
  }

  .hero-title {
    margin-left: 0;
    margin-top: 20px;
    font-size: 32px;
  }

  .hero h2 {
    font-size: 24px;
  }

  .hero-comment-bubble {
    display: none;
  }

  .featured-numbers {
    font-size: 48px;
  }

  .jurusan-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .jurusan-title {
    font-size: 20px;
  }

  .contact-wrapper {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  :root {
    --h1-font-size: 32px;
    --h2-font-size: 26px;
    --h3-font-size: 22px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero h2 {
    font-size: 22px;
  }

  .custom-btn {
    padding: 12px 24px;
    font-size: 15px;
  }

  .section-title-wrap {
    flex-direction: column;
    text-align: center;
  }

  .avatar-image {
    margin-bottom: 15px;
  }

  .profile-body p {
    flex-direction: column;
    align-items: flex-start;
  }

  .profile-small-title {
    min-width: 100%;
    margin-bottom: 5px;
  }

  .detail-item {
    flex-direction: column;
  }

  .detail-item strong {
    min-width: 100%;
    margin-bottom: 5px;
  }

  .social-icon {
    justify-content: center;
  }
}

/*---------------------------------------
  ANIMATION CLASSES
-----------------------------------------*/
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s var(--transition-slow);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

/*---------------------------------------
  GLOW EFFECTS
-----------------------------------------*/
.glow-effect {
  position: relative;
}

.glow-effect::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: var(--gradient-primary);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  filter: blur(20px);
  transition: opacity var(--transition-fast);
}

.glow-effect:hover::after {
  opacity: 0.5;
}

/*---------------------------------------
  CUSTOM SCROLLBAR
-----------------------------------------*/
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--light-color);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: var(--border-radius-large);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gradient-secondary);
}

/*---------------------------------------
  PARALLAX EFFECTS
-----------------------------------------*/
.parallax {
  background-attachment: fixed !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

/*---------------------------------------
  SHIMMER EFFECT FOR LOADING
-----------------------------------------*/
.shimmer {
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.8) 50%,
      rgba(255, 255, 255, 0) 100%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
}

/*---------------------------------------
  PULSE ANIMATION FOR IMPORTANT ELEMENTS
-----------------------------------------*/
.pulse-animation {
  animation: pulse 2s infinite;
}

/*---------------------------------------
  FLOATING ANIMATION
-----------------------------------------*/
.floating {
  animation: float 3s ease-in-out infinite;
}

/*---------------------------------------
  RIPPLE EFFECT
-----------------------------------------*/
.ripple {
  position: relative;
  overflow: hidden;
}

.ripple::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.ripple:focus:not(:active)::after {
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }

  100% {
    transform: scale(50, 50);
    opacity: 0;
  }
}

/*---------------------------------------
  FIX RESPONSIVE - INFORMATION SECTION
-----------------------------------------*/

/* Profile/Information Card - Base Styles */
.profile-thumb {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.profile-title {
  background: var(--secondary-color);
  padding: 15px 20px;
  color: white;
}

.profile-title h4 {
  color: white;
  margin: 0;
  font-size: 18px;
}

.profile-body {
  padding: 0;
}

.profile-body p {
  display: flex;
  flex-wrap: wrap;
  padding: 15px 20px;
  margin: 0;
  border-bottom: 1px solid #eee;
  word-break: break-word;
}

.profile-body p:last-child {
  border-bottom: none;
}

.profile-small-title {
  width: 150px;
  min-width: 150px;
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 16px;
  flex-shrink: 0;
}

.profile-body span:last-child {
  flex: 1;
  color: #666;
  font-size: 16px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.profile-body a {
  color: var(--secondary-color);
  text-decoration: none;
  word-break: break-all;
}

/* Featured Numbers Section */
.featured {
  background: var(--section-bg-color);
}

.featured-numbers {
  display: block;
  font-size: 60px;
  font-weight: bold;
  color: var(--secondary-color);
  line-height: 1;
  margin-bottom: 10px;
}

.featured-text {
  color: #333;
  font-size: 16px;
  margin: 0;
}

.featured-border-bottom {
  border-bottom: 2px solid #e9eaeb;
}

.featured-border-start {
  border-left: 2px solid #e9eaeb;
}

/* RESPONSIVE - TABLET (≤992px) */
@media screen and (max-width: 992px) {
  .profile-small-title {
    width: 140px;
    min-width: 140px;
    font-size: 15px;
  }

  .profile-body span:last-child {
    font-size: 15px;
  }

  .featured-numbers {
    font-size: 50px;
  }

  .featured-text {
    font-size: 15px;
  }
}

/* RESPONSIVE - MOBILE (≤768px) */
@media screen and (max-width: 768px) {
  .profile-thumb {
    margin-bottom: 30px;
  }

  .profile-body p {
    flex-direction: column;
    padding: 12px 15px;
  }

  .profile-small-title {
    width: 100%;
    min-width: 100%;
    margin-bottom: 5px;
    font-size: 14px;
  }

  .profile-body span:last-child {
    width: 100%;
    font-size: 14px;
  }

  .featured-numbers {
    font-size: 40px;
  }

  .featured-text {
    font-size: 14px;
  }

  .featured-border-start {
    border-left: none;
    border-top: 2px solid #e9eaeb;
    padding-left: 0 !important;
    padding-top: 20px;
  }

  .featured-border-bottom {
    padding-bottom: 20px;
  }
}

/* RESPONSIVE - SMALL MOBILE (≤576px) */
@media screen and (max-width: 576px) {
  .profile-title {
    padding: 12px 15px;
  }

  .profile-title h4 {
    font-size: 16px;
  }

  .profile-body p {
    padding: 10px 15px;
  }

  .profile-small-title {
    font-size: 13px;
    font-weight: 700;
  }

  .profile-body span:last-child {
    font-size: 13px;
  }

  .featured-numbers {
    font-size: 32px;
  }

  .featured-text {
    font-size: 13px;
  }

  /* Fix untuk text panjang yang terpotong */
  .profile-body a {
    word-break: break-all;
    overflow-wrap: anywhere;
  }
}

/* RESPONSIVE - EXTRA SMALL (≤480px) */
@media screen and (max-width: 480px) {
  .profile-thumb {
    border-radius: 8px;
  }

  .profile-title {
    padding: 10px 12px;
  }

  .profile-title h4 {
    font-size: 15px;
  }

  .profile-body p {
    padding: 8px 12px;
  }

  .profile-small-title {
    font-size: 12px;
  }

  .profile-body span:last-child {
    font-size: 12px;
  }

  .featured-numbers {
    font-size: 28px;
  }

  .featured-text {
    font-size: 12px;
  }
}

/* Fix overflow container di mobile */
@media screen and (max-width: 768px) {
  .featured .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .featured .row {
    margin-left: 0;
    margin-right: 0;
  }

  .featured .col-lg-6 {
    padding-left: 0;
    padding-right: 0;
  }
}