/* ================> HEADER STYLES <================ */
.custom-header-wrapper {
  background: transparent !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
}

.custom-header-wrapper > .container-fluid {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

.custom-header-wrapper .header-logo {
  height: auto;
  transition: max-height 0.3s ease;
}

/* Logo responsive sizes */
@media (max-width: 479px) {
  .custom-header-wrapper .header-logo {
    max-height: 60px;
    width: 100%;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .custom-header-wrapper .header-logo {
    max-height: 80px;
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .custom-header-wrapper .header-logo {
    max-height: 120px;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .custom-header-wrapper .header-logo {
    max-height: 180px;

  }
}

/* ================> ICON STYLES <================ */
.icon-circle-dark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
  background: transparent;
  border: 2px solid #ffffff;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.icon-circle-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.social-icon {
  cursor: pointer;
}

.info-label {
  color: #ffffff;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 3px;
}

.info-text {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  word-break: break-word;
}

.border-line-dark {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  margin: 0;
}

/* ================> NAVIGATION STYLES <================ */
.header-nav {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.header-nav li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 5px;
}

.header-nav li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: width 0.3s ease;
}

.header-nav li a:hover::after {
  width: 100%;
}

/* ================> HAMBURGER MENU <================ */
.hamburger-menu {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px 0;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.hamburger-menu span {
  width: 28px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ================> MOBILE MENU <================ */
.mobile-menu {
  display: none;
  flex-basis: 100%;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  animation: fadeIn 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.mobile-menu.active {
  display: flex !important;
  flex-direction: column;
  flex-basis: 100%;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu .header-nav {
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.mobile-menu .header-nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
}

.mobile-menu .header-nav li:last-child {
  border-bottom: none;
}

/* ================> TABLET STYLES (768px and up) <================ */
@media (max-width: 767px) {
  .custom-header-wrapper .header-logo {
    max-height: 100px;
    object-fit: contain;
  }

  .icon-circle-dark {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .info-label {
    font-size: 15px;
  }

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

  .top-row,
  .bottom-row {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .border-line-dark {
    margin: 0.5rem 0;
  }
}

/* ================> SMALL MOBILE STYLES (480px and down) <================ */
@media (max-width: 479px) {
  .custom-header-wrapper .header-logo {
    max-height: 80px;
  }

  .custom-header-wrapper > .container-fluid {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .icon-circle-dark {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .info-label {
    font-size: 14px;
  }

  .info-text {
    font-size: 11px;
  }

  .hamburger-menu span {
    width: 24px;
    height: 2px;
  }
}

/* ================> MEDIUM TABLET STYLES (768px to 991px) <================ */
@media (min-width: 768px) and (max-width: 991px) {
  .custom-header-wrapper .header-logo {
    max-height: 130px;
    object-fit: contain;
  }

  .icon-circle-dark {
    width: 48px;
    height: 48px;
    font-size: 19px;
  }

  .info-label {
    font-size: 16px;
  }

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

  .header-nav {
    gap: 1.5rem;
  }
}

/* ================> LARGE DESKTOP STYLES (1200px and up) <================ */
@media (min-width: 1200px) {
  .custom-header-wrapper .header-logo {
    max-height: 160px;
    object-fit: contain;
  }

  .header-nav {
    gap: 2.5rem;
  }
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 280px;
    height: 100vh;
    background: #1a1a1a;
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 20px 0;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-menu-header {
    padding: 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-header h5 {
    color: #ffffff;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-nav {
    list-style: none;
    padding: 0 20px;
    margin: 0;
}

.mobile-menu-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
}

.mobile-menu-nav li:last-child {
    border-bottom: none;
}

.mobile-menu-nav li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-menu-nav li a:hover {
    color: #d4af37;
}

.mobile-menu-nav li a i {
    font-size: 16px;
}

button#hamburgerBtn {
    filter: invert(1);
}

