/* ===== MODERN PAGE HEADER STYLES ===== */
.page-header {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f0e1a;
  overflow: hidden;
  margin-bottom: 0;
}

/* Background image with overlay */
.page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  animation: subtleZoom 15s ease-in-out infinite alternate;
}

@keyframes subtleZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.03);
  }
}

/* Modern gradient overlay */
.page-header__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(15, 14, 26, 0.88) 0%,
    rgba(26, 25, 48, 0.82) 50%,
    rgba(11, 77, 136, 0.75) 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* Decorative floating elements */
.page-header::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(49, 130, 206, 0.12) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 2;
  animation: floatSlow 18s ease-in-out infinite;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -25%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(11, 77, 136, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 2;
  animation: floatSlow 15s ease-in-out infinite reverse;
}

@keyframes floatSlow {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, -20px);
  }
}

/* Shape decorative element (optional, can be removed) */
.page-header__shape-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 280px;
  height: 210px;
  background-image: url(/assets/images/shapes/page-header-shape-1.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 3;
  margin-bottom: -130px;
  opacity: 0.3;
  animation: fadeInSlideUp 1s ease-out;
}

/* Page Header Inner Container */
.page-header__inner {
  position: relative;
  z-index: 4;
  text-align: left;
  padding: 3rem 0 2rem 0;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 0.3;
    transform: translateY(0);
  }
}

/* Page Title with modern styling */
.page-header__inner h3 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Decorative line under title */
.page-header__inner h3::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3182ce, #60a5fa);
  border-radius: 2px;
  animation: lineGrow 0.8s ease-out 0.5s both;
}

@keyframes lineGrow {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 80px;
    opacity: 1;
  }
}

/* Breadcrumb Container */
.thm-breadcrumb__inner {
  margin-top: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Modern Breadcrumb Styling */
.thm-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  flex-wrap: wrap;
}

.thm-breadcrumb li {
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.thm-breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
}

.thm-breadcrumb a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #60a5fa;
  transition: width 0.3s ease;
}

.thm-breadcrumb a:hover {
  color: #60a5fa;
  background: rgba(96, 165, 250, 0.1);
}

.thm-breadcrumb a:hover::before {
  width: 100%;
}

/* Breadcrumb current page */
.thm-breadcrumb li:last-child {
  color: #ffffff;
  font-weight: 600;
}

/* Breadcrumb arrow icon */
.breadcrumb-arrow {
  font-size: 0.75em;
  color: rgba(96, 165, 250, 0.6);
  vertical-align: middle;
  display: inline-block;
  transition: color 0.3s ease;
}

.icon-arrow-left {
  filter: none;
}

/* Responsive Design for Page Header */
@media (max-width: 991px) {
  .page-header {
    min-height: 350px;
  }

  .page-header__inner {
    padding: 2.5rem 0 1.75rem 0;
  }

  .page-header__inner h3 {
    font-size: clamp(1.75rem, 4.5vw, 3rem);
    margin-bottom: 1.25rem;
  }

  .page-header__inner h3::after {
    width: 60px;
    height: 3px;
  }

  .thm-breadcrumb {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .page-header {
    min-height: 300px;
  }

  .page-header__inner {
    padding: 2rem 0 1.5rem 0;
  }

  .page-header__inner h3 {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
    margin-bottom: 1rem;
  }

  .page-header__inner h3::after {
    width: 50px;
  }

  .page-header__shape-1 {
    width: 200px;
    height: 150px;
    margin-bottom: -90px;
  }

  .thm-breadcrumb {
    font-size: 0.9rem;
    gap: 0.5rem;
  }

  .page-header::before,
  .page-header::after {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 576px) {
  .page-header {
    min-height: 250px;
  }

  .page-header__inner {
    padding: 1.75rem 0 1.25rem 0;
  }

  .page-header__inner h3 {
    font-size: clamp(1.35rem, 7vw, 2rem);
  }

  .page-header__inner h3::after {
    width: 40px;
    height: 3px;
  }

  .page-header__shape-1 {
    width: 150px;
    height: 110px;
    margin-bottom: -70px;
    opacity: 0.2;
  }

  .thm-breadcrumb {
    font-size: 0.85rem;
  }

  .page-header::before,
  .page-header::after {
    display: none;
  }
}

/* Performance optimizations */
.page-header,
.page-header *,
.page-header__inner * {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  .page-header__bg,
  .page-header::before,
  .page-header::after,
  .page-header__inner,
  .page-header__inner h3,
  .page-header__inner h3::after,
  .thm-breadcrumb__inner,
  .page-header__shape-1 {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}
/* Dropdown submeniu: stilizare îmbunătățită */
.navbar .dropdown-menu {
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(19, 18, 34, 0.12);
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 200px;
  background: var(--mauno-white);
}

.dropdown-item {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--mauno-black);
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.dropdown-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 70%;
  background: var(--mauno-base);
  transition: width 0.3s ease;
  border-radius: 0 2px 2px 0;
}

.dropdown-item:hover {
  background: rgba(11, 77, 136, 0.06);
  color: var(--mauno-base);
  padding-left: 2rem;
}

.dropdown-item:hover::before {
  width: 4px;
}

.dropdown-item:active,
.dropdown-item:focus {
  background: rgba(11, 77, 136, 0.1);
  color: var(--mauno-base);
}
.mobile-menu-btn:focus,
.mobile-menu-btn:active,
.mobile-menu-btn:focus:hover,
.mobile-menu-btn:active:hover {
  color: #fff !important;
}
.mobile-menu-btn:focus,
.mobile-menu-btn:active {
  color: #fff !important;
}
.mobile-menu-overlay-separator {
  width: 80%;
  margin: 0 auto 1.5rem auto;
  border: none;
  border-top: 2px solid rgba(255,255,255,0.3);
  display: block;
}

/* Separator doar pentru burger meniu mobil */
.mobile-menu-overlay-separator {
  width: 80%;
  margin: 0 auto 1.5rem auto;
  border: none;
  border-top: 2px solid rgba(255,255,255,0.3);
}
/* Filtru alb pe logo din burger meniu */
.mobile-menu-overlay img[alt="Logo secundar"] {
  filter: brightness(0) invert(1);
}
/* Burger menu icon bars with smooth animation */
.burger-bar {
  position: absolute;
  left: 8px;
  width: 16px;
  height: 3px;
  border-radius: 2px;
  background: var(--mauno-black);
  display: block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.bar1 { top: 10px; }
.bar2 { top: 16px; }
.bar3 { top: 22px; }

/* Animated burger icon on menu open */
#burgerMenuBtn.active .bar1 {
  transform: translateY(6px) rotate(45deg);
}
#burgerMenuBtn.active .bar2 {
  opacity: 0;
  transform: scaleX(0);
}
#burgerMenuBtn.active .bar3 {
  transform: translateY(-6px) rotate(-45deg);
}

/* Burger menu button styles */
#burgerMenuBtn {
  border: none;
  background: none;
  color: var(--mauno-black);
  padding: 10px 16px;
  border-radius: 0;
  box-shadow: none;
  font-size: 2rem;
  min-width: 56px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 2001;
  transition: transform 0.2s ease;
}

#burgerMenuBtn:active {
  transform: scale(0.95);
}

/* Mobile menu overlay with backdrop blur */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2000;
  pointer-events: none;
  visibility: hidden;
}

/* Backdrop with blur effect */
.mobile-menu-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(19, 18, 34, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active::before {
  opacity: 1;
}

/* Menu panel */
.mobile-menu-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 85vw;
  max-width: 380px;
  height: 100vh;
  background: linear-gradient(135deg, #131222 0%, #1a1930 100%);
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 1.5rem;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu-overlay.active {
  pointer-events: all;
  visibility: visible;
}

.mobile-menu-overlay.active .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  line-height: 1;
  padding: 0;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
  border-color: var(--mauno-base);
}

.mobile-menu-overlay ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  width: 100%;
}

/* Staggered menu items animation */
.mobile-menu-overlay ul li {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active ul li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu-overlay.active ul li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-overlay.active ul li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu-overlay.active ul li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu-overlay.active ul li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu-overlay.active ul li:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu-overlay.active ul li:nth-child(6) { transition-delay: 0.35s; }

.mobile-menu-btn {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 500;
  min-width: 120px;
  display: inline-block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(11, 77, 136, 0.2);
  transition: width 0.3s ease;
  z-index: -1;
}

.mobile-menu-btn:hover::before,
.mobile-menu-btn:focus::before {
  width: 100%;
}

.mobile-menu-btn:hover,
.mobile-menu-btn:focus:hover,
.mobile-menu-btn:active:hover {
  color: var(--mauno-base) !important;
  background: none;
  transform: translateX(8px);
  box-shadow: none;
  outline: none;
  border: none;
}

.mobile-menu-btn:focus,
.mobile-menu-btn:active {
  color: #fff !important;
  background: none !important;
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
}

/* Contact info animation */
.mobile-menu-contact {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.mobile-menu-overlay.active .mobile-menu-contact {
  opacity: 1;
  transform: translateY(0);
}

/* Logo animation in mobile menu */
.mobile-menu-overlay img[alt="Logo secundar"] {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.05s;
}

.mobile-menu-overlay.active img[alt="Logo secundar"] {
  opacity: 1;
  transform: scale(1);
}

/* Performance optimizations */
.mobile-menu-overlay,
.mobile-menu-panel,
.mobile-menu-btn,
.burger-bar {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Hardware acceleration hints */
.mobile-menu-panel {
  transform: translateX(-100%) translateZ(0);
}

.mobile-menu-overlay.active .mobile-menu-panel {
  transform: translateX(0) translateZ(0);
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .mobile-menu-panel {
    width: 90vw;
    max-width: 320px;
  }

  .mobile-menu-btn {
    font-size: 1.05rem;
    padding: 0.4rem 0.8rem;
  }

  .mobile-menu-close {
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
    top: 16px;
    right: 16px;
  }
}

@media (max-width: 360px) {
  .mobile-menu-panel {
    width: 95vw;
  }

  .mobile-menu-btn {
    font-size: 1rem;
  }
}

/* Touch target improvements */
@media (hover: none) and (pointer: coarse) {
  .mobile-menu-btn {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu-close {
    min-width: 48px;
    min-height: 48px;
  }

  #burgerMenuBtn {
    min-width: 48px;
    min-height: 48px;
  }
}

/* Smooth scrolling for iOS */
@supports (-webkit-overflow-scrolling: touch) {
  .mobile-menu-panel {
    -webkit-overflow-scrolling: touch;
  }
}

/* Prevent overscroll on iOS */
.mobile-menu-overlay.active {
  position: fixed;
  overflow: hidden;
}

/* Add gradient border effect to menu items */
.mobile-menu-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--mauno-base), transparent);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.mobile-menu-btn:hover::after {
  width: 80%;
}

/* Mobile dropdown menu styles */
.mobile-dropdown {
  position: relative;
}

.mobile-dropdown-toggle {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
}

.mobile-dropdown-icon {
  font-size: 0.85rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  margin-left: 4px;
}

.mobile-dropdown.active .mobile-dropdown-icon {
  transform: rotate(180deg);
}

.mobile-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  opacity: 0;
}

.mobile-dropdown.active .mobile-submenu {
  max-height: 300px;
  opacity: 1;
  margin-top: 0.5rem;
}

.mobile-submenu li {
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-dropdown.active .mobile-submenu li {
  opacity: 1;
  transform: translateY(0);
}

.mobile-dropdown.active .mobile-submenu li:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-dropdown.active .mobile-submenu li:nth-child(2) {
  transition-delay: 0.15s;
}

.mobile-dropdown.active .mobile-submenu li:nth-child(3) {
  transition-delay: 0.2s;
}

.mobile-submenu-btn {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 1rem;
  font-weight: 400;
  display: inline-block;
  padding: 0.4rem 1.2rem;
  text-decoration: none;
  border-radius: 6px;
  position: relative;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  margin: 0.3rem 0;
  min-width: 140px;
}

.mobile-submenu-btn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--mauno-base);
  transition: height 0.3s ease;
}

.mobile-submenu-btn:hover::before,
.mobile-submenu-btn:focus::before {
  height: 70%;
}

.mobile-submenu-btn:hover,
.mobile-submenu-btn:focus {
  color: #fff !important;
  background: rgba(11, 77, 136, 0.15);
  transform: translateX(8px);
  padding-left: 1.5rem;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .mobile-menu-overlay,
  .mobile-menu-overlay::before,
  .mobile-menu-panel,
  .mobile-menu-overlay ul li,
  .mobile-menu-contact,
  .mobile-menu-btn,
  .burger-bar,
  .mobile-menu-close,
  .mobile-menu-overlay img[alt="Logo secundar"],
  .mobile-dropdown-icon,
  .mobile-submenu,
  .mobile-submenu-btn {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ===== UNIFIED MODERN BUTTON STYLE ===== */
/* Based on contact.html Send Message button design */
.btn-modern,
.thm-btn {
  width: 100%;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff !important;
  background: linear-gradient(135deg, #1a365d 0%, #3182ce 100%) !important;
  border: none !important;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(26, 54, 93, 0.2);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  line-height: 1.5;
}

.btn-modern::before,
.thm-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: 0;
}

.btn-modern:hover,
.thm-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 54, 93, 0.3);
  color: #ffffff !important;
}

.btn-modern:hover::before,
.thm-btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-modern:active,
.thm-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(26, 54, 93, 0.2);
}

.btn-modern i,
.thm-btn i,
.btn-modern span,
.thm-btn span {
  position: relative;
  z-index: 1;
}

.btn-modern i,
.thm-btn i {
  transition: transform 0.3s ease;
  font-size: 0.9rem;
}

.btn-modern:hover i,
.thm-btn:hover i {
  transform: translateX(4px);
}

/* Smaller button variant */
.btn-modern-sm {
  padding: 0.75rem 1.25rem;
  font-size: 0.95rem;
}

/* Full width variant */
.btn-modern-full {
  width: 100%;
  display: flex;
}

/* Icon only variant */
.btn-modern-icon {
  width: auto;
  padding: 0.875rem;
  min-width: 48px;
}

/* Performance optimizations */
.btn-modern,
.thm-btn {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
/* Make navbar phone number larger */
.phone-hover {
  font-size: 1.2em;
}
/* Phone number hover effect for navbar */
.phone-hover:hover {
  color: var(--mauno-base) !important;
}

/* Prevent parent hover from affecting Contact Us */
.d-flex .fw-normal,
.d-flex .fw-normal:hover {
  color: var(--mauno-black) !important;
}
:root {
  --mauno-gray: #868689;
  --mauno-gray-rgb: 134, 134, 137;
  --mauno-base: #0B4D88;
  --mauno-base-rgb: 11, 77, 136;
  --mauno-black: #131222;
  --mauno-black-rgb: 19, 18, 34;
  --mauno-extra: #E3E3E3;
  --mauno-extra-rgb: 227, 227, 227;
  --mauno-white: #ffffff;
  --mauno-white-rgb: 255, 255, 255;
  --mauno-bdr-color: #D9D9D9;
  --mauno-bdr-color-rgb: 238, 239, 242;
  --mauno-bdr-radius: 20px;
}


body {
  position: relative;
  display: block;
  color: var(--mauno-black);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  z-index: 1;
}

/* ===== UTILITY CLASSES ===== */
.bg-mauno-black {
  background-color: var(--mauno-black) !important;
}

/* ===== TOP BAR STYLES ===== */
.top-bar {
  padding: 6px 0 !important;
  height: auto;
  min-height: 32px;
}

.top-bar .contact-info .contact-item i {
  font-size: 16px !important;
  transition: color 0.3s ease;
}

.top-bar .contact-info .contact-item:hover i {
  color: rgba(11, 77, 136, 0.8);
}

.top-bar .contact-info .contact-item i {
  color: var(--mauno-base);
  font-size: 14px;
  transition: color 0.3s ease;
}

.top-bar .contact-info .contact-item:hover i {
  color: rgba(11, 77, 136, 0.8);
}

/* Perfect Alignment for Contact Items */
.top-bar .contact-info {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
}

.top-bar .contact-info .contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar .contact-info .contact-item i {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.top-bar .contact-info .contact-item a {
  line-height: 1;
  display: flex;
  align-items: center;
  font-weight: 500;
}

/* Contact Item Separator */
.top-bar .contact-info .contact-item:not(:last-child)::after {
  content: "|";
  color: rgba(255, 255, 255, 0.3);
  margin-left: 20px;
  margin-right: 20px;
  font-weight: 300;
  line-height: 1;
  display: flex;
  align-items: center;
  height: 18px;
}

/* Instagram Button - Square border */
.top-bar .social-media .btn-outline-light {
border-radius: 4px !important;
border-color: rgba(255,255,255,0.15) !important;
width: 36px !important;
height: 36px !important;
}

.top-bar .social-media .btn-outline-light {
display: flex !important;
align-items: center !important;
justify-content: center !important;
}

.top-bar .social-media .btn-outline-light i {
font-size: 16px;
line-height: 1;
}

/* Position Instagram button to the right edge */
.top-bar .social-media {
margin-left: auto;
display: flex;
justify-content: flex-end;
}

/* ===== NAVBAR BUTTONS ===== */
.btn-mauno-black, .navbar .nav-link.btn-mauno-black {
  background: none !important;
  color: var(--mauno-black) !important;
  border: none !important;
  border-radius: 0;
  padding: 6px 16px;
  margin: 0 4px;
  box-shadow: none !important;
  transition: color 0.2s;
}
.btn-mauno-black:hover, .navbar .nav-link.btn-mauno-black:hover {
  color: var(--mauno-base) !important;
  background: none !important;
}

/* Show dropdown on hover for navbar */
.navbar .nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

.navbar .nav-item.dropdown .dropdown-toggle {
  cursor: pointer;
}

/* ===== CONTACT BUTTON NAVBAR ===== */
.btn-mauno-contact {
  background: none !important;
  color: var(--mauno-black) !important;
  border: none !important;
  border-radius: 0;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 500;
  box-shadow: none !important;
  transition: color 0.2s;
}
.btn-mauno-contact:hover {
  color: var(--mauno-base) !important;
  background: none !important;
}
.btn-mauno-contact i {
  font-size: 18px;
  margin-right: 6px;
  color: var(--mauno-black) !important;
}

/* ===== PHONE ICON BADGE IN CONTACT BUTTON ===== */
.btn-mauno-contact .phone-icon-badge {
  background: var(--mauno-base);
  color: var(--mauno-white);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-right: 10px;
  box-shadow: 0 2px 8px rgba(11,77,136,0.10);
}