.elementor-31099 .elementor-element.elementor-element-a12900b{--display:flex;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-fb30d53 *//* ============================================
   VERTICAL HEADER - PROPER WIDTH CONTAIN
   ============================================ */

/* Body margin to push all content */
html {
  margin-left: 100px !important;
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  margin: 0 !important;
  padding: 0 !important;
  position: relative;
}

/* Sidebar - Fixed but takes space */
.vertical-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100px;
  height: 100vh;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
  box-sizing: border-box;
  background: #0a0a0a;
  border-right: 1px solid #333;
}

/* ============================================
   MENU TOGGLE
   ============================================ */
.menu-toggle {
  width: 45px;
  height: 45px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
}

.menu-toggle .line {
  width: 25px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
  display: block;
}

.menu-toggle:hover .line {
  background: #e63946;
}

.menu-toggle.active .line:first-child {
  transform: rotate(45deg) translate(3px, 3px);
}

.menu-toggle.active .line:last-child {
  transform: rotate(-45deg) translate(3px, -3px);
}

/* ============================================
   SOCIAL ICONS - ALL RED HOVER
   ============================================ */
.social-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  background: transparent;
  border: 1px solid #444;
  transition: all 0.3s ease;
}

/* SAB ICONS PE SAME RED COLOR */
.social-icon:hover {
  background: #e63946;
  border-color: #e63946;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4);
}

/* ============================================
   LOGO
   ============================================ */
.header-logo {
  width: 70px;
  padding: 10px;
  box-sizing: border-box;
}

.header-logo img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.header-logo:hover img {
  filter: brightness(1) invert(0);
}

/* ============================================
   FULLSCREEN MENU
   ============================================ */
.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 100px;
  width: calc(100% - 100px);
  height: 100vh;
  z-index: 9998;
  background: #0a0a0a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  overflow-y: auto;
  margin-left: 0 !important;
}

.fullscreen-menu.active {
  opacity: 1;
  visibility: visible;
}

/* Close Button */
.menu-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 10000;
}

.menu-close:hover {
  color: #e63946;
}

/* Menu Navigation */
.custom-menu-nav {
  width: 100%;
  max-width: 600px;
  padding: 40px;
}

.custom-menu-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.custom-menu-item {
  border-bottom: 1px solid #222;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.3s ease;
}

.fullscreen-menu.active .custom-menu-item {
  opacity: 1;
  transform: translateX(0);
}

.fullscreen-menu.active .custom-menu-item:nth-child(1) { transition-delay: 0.1s; }
.fullscreen-menu.active .custom-menu-item:nth-child(2) { transition-delay: 0.15s; }
.fullscreen-menu.active .custom-menu-item:nth-child(3) { transition-delay: 0.2s; }
.fullscreen-menu.active .custom-menu-item:nth-child(4) { transition-delay: 0.25s; }
.fullscreen-menu.active .custom-menu-item:nth-child(5) { transition-delay: 0.3s; }
.fullscreen-menu.active .custom-menu-item:nth-child(6) { transition-delay: 0.35s; }
.fullscreen-menu.active .custom-menu-item:nth-child(7) { transition-delay: 0.4s; }
.fullscreen-menu.active .custom-menu-item:nth-child(8) { transition-delay: 0.45s; }

/* Menu Links */
.custom-menu-link {
  display: flex !important;
  align-items: center !important;
  gap: 15px !important;
  padding: 20px 0 !important;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 24px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  transition: all 0.3s ease !important;
  background: transparent !important;
  border: none !important;
}

.custom-menu-link i {
  color: #e63946;
  width: 30px;
  text-align: center;
  font-size: 20px;
}

.custom-menu-link:hover {
  color: #e63946 !important;
  padding-left: 20px !important;
}

/* Submenu */
.custom-submenu {
  list-style: none !important;
  margin: 0 0 15px 45px !important;
  padding: 0 !important;
  display: none;
  flex-direction: column;
  gap: 10px;
}

.custom-submenu.open {
  display: flex;
}

.custom-submenu li a {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  color: #aaa !important;
  text-decoration: none !important;
  font-size: 16px !important;
  padding: 8px 0 !important;
  transition: all 0.3s ease !important;
  background: transparent !important;
  border: none !important;
}

.custom-submenu li a i {
  color: #e63946;
  font-size: 14px;
}

.custom-submenu li a:hover {
  color: #fff !important;
  padding-left: 10px !important;
}

/* Submenu indicator */
.has-submenu > .custom-menu-link::after {
  content: '+';
  margin-left: auto;
  color: #e63946;
  font-size: 20px;
}

/* ============================================
   MOBILE - No margin on mobile
   ============================================ */
@media screen and (max-width: 768px) {
  html {
    margin-left: 0 !important;
  }
  
  .vertical-header {
    width: 100%;
    height: 60px;
    flex-direction: row;
    padding: 0 20px;
    border-right: none;
    border-bottom: 1px solid #333;
    position: fixed;
  }
  
  .social-container {
    flex-direction: row;
    gap: 10px;
  }
  
  .social-icon {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  .header-logo {
    width: 50px;
    padding: 5px;
  }
  
  .fullscreen-menu {
    left: 0;
    width: 100%;
    top: 60px;
    height: calc(100vh - 60px);
    margin-left: 0 !important;
  }
  
  .custom-menu-link {
    font-size: 18px !important;
    padding: 15px 0 !important;
  }
  
  .custom-submenu {
    margin-left: 35px !important;
  }
}/* End custom CSS */