@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

/* Smooth scroll for anchor links */
html {
    scroll-behavior: smooth;
}

/* Fix vertical video fullscreen on desktop — prevents portrait video from
   stretching/cropping on a wide screen */
video:fullscreen,
video:-webkit-full-screen {
    object-fit: contain !important;
    background: #000 !important;
    width: 100% !important;
    height: 100% !important;
}

.video-player-wrapper:fullscreen video,
.video-player-wrapper:-webkit-full-screen video {
    object-fit: contain !important;
    background: #000 !important;
}

*:fullscreen video,
*:-webkit-full-screen video {
    object-fit: contain !important;
    background: #000 !important;
}

/* Scroll offset for contact form targets */
#comp-lowwv0yr {
    scroll-margin-top: 100px;
}

/* ============================================
   BASSLILA Custom Navbar - Inspired by Limitless Framer Template
   ============================================ */

/* Site-wide dark background (Wix sets this dynamically via JS on the live site) */
body {
    background-color: #000 !important;
}

#pageBackground_c1dmp .tcElKx,
#pageBackground_c1dmp .LWbAav {
    background-color: #222323 !important;
}

/* Hide original Wix header and sticky nav */
#SITE_HEADER,
#SITE_HEADER_WRAPPER,
#SITE_HEADER-placeholder {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  overflow: hidden !important;
}

/* Hide the Wix SOSP (sticky on all pages) nav bar */
#comp-m6meq2c5,
#soapAfterPagesContainer,
#SOSP_CONTAINER_CUSTOM_ID,
.SHHiV9,
.big2ZD {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  pointer-events: none !important;
}

/* Navbar Variables */
:root {
  --bl-nav-bg: rgba(13, 13, 13, 0.8);
  --bl-nav-border: rgba(255, 255, 255, 0.08);
  --bl-nav-text: #ffffff;
  --bl-nav-text-muted: rgba(255, 255, 255, 0.9);
  --bl-nav-accent: rgb(98, 20, 217);
  --bl-nav-accent-hover: rgb(118, 40, 237);
  --bl-nav-height: 64px;
  --bl-nav-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Navbar Container */
.bl-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999999;
  padding: 12px 24px;
  font-family: var(--bl-nav-font);
}

.bl-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 804px;
  margin: 0 auto;
  height: var(--bl-nav-height);
  background: var(--bl-nav-bg);
  border: 1px solid var(--bl-nav-border);
  border-radius: 999px;
  padding: 0 16px 0 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  gap: 4px;
}

/* Logo Section */
.bl-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.bl-logo img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.bl-logo-text {
  color: var(--bl-nav-text);
  font-family: var(--bl-nav-font);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Navigation Links */
.bl-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.bl-nav-links a {
  color: var(--bl-nav-text-muted);
  text-decoration: none;
  font-family: var(--bl-nav-font);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 999px;
  transition: color 0.2s ease, background-color 0.2s ease;
  white-space: nowrap;
}

.bl-nav-links a:hover {
  color: var(--bl-nav-text);
  background: rgba(255, 255, 255, 0.06);
}

.bl-nav-links a.active {
  color: var(--bl-nav-text);
  background: rgba(255, 255, 255, 0.1);
}

/* Dropdown */
.bl-dropdown {
  position: relative;
}

.bl-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--bl-nav-text-muted);
  background: none;
  border: none;
  font-family: var(--bl-nav-font);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
  white-space: nowrap;
}

.bl-dropdown-toggle:hover,
.bl-dropdown:hover .bl-dropdown-toggle,
.bl-dropdown.open .bl-dropdown-toggle {
  color: var(--bl-nav-text);
  background: rgba(255, 255, 255, 0.06);
}

.bl-dropdown-arrow {
  display: none !important;
}

.bl-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-5px);
  min-width: auto;
  white-space: nowrap;
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid var(--bl-nav-border);
  border-radius: 14px;
  padding: 4px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000000;
}

.bl-dropdown:hover .bl-dropdown-menu,
.bl-dropdown.open .bl-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Invisible bridge so mouse doesn't lose hover when crossing the gap */
.bl-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 15px;
}

.bl-dropdown-menu a {
  display: block;
  color: var(--bl-nav-text-muted);
  text-decoration: none;
  font-family: var(--bl-nav-font);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 10px;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.bl-dropdown-menu a:hover {
  color: var(--bl-nav-text);
  background: rgba(255, 255, 255, 0.08);
}

/* Mobile dropdown */
.bl-mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: var(--bl-nav-text-muted);
  background: none;
  border: none;
  font-family: var(--bl-nav-font);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.bl-mobile-dropdown-toggle:hover {
  color: var(--bl-nav-text);
  background: rgba(255, 255, 255, 0.06);
}

.bl-mobile-dropdown-items {
  display: none;
  flex-direction: column;
  padding-left: 12px;
}

.bl-mobile-dropdown-items.open {
  display: flex;
}

.bl-mobile-dropdown-items a {
  font-size: 14px !important;
  padding: 10px 16px !important;
}

/* Action Buttons */
.bl-nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.bl-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bl-nav-text);
  text-decoration: none;
  font-family: var(--bl-nav-font);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.bl-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.bl-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-family: var(--bl-nav-font);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--bl-nav-accent);
  border: none;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.bl-btn-primary:hover {
  background: var(--bl-nav-accent-hover);
}

/* Spacer - hidden on desktop; visible on mobile to push content below fixed navbar */
.bl-navbar-spacer {
  display: none;
}

body.device-mobile-optimized .bl-navbar-spacer {
  display: block;
  height: 70px;
}

/* Mobile hamburger button */
.bl-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  border-radius: 8px;
  transition: background 0.15s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}

.bl-hamburger:hover {
  background: rgba(255, 255, 255, 0.06);
}

.bl-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--bl-nav-text);
  border-radius: 2px;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.bl-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.bl-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.bl-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile overlay */
.bl-mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999998;
  opacity: 0;
  transition: opacity 0.15s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.bl-mobile-overlay.open {
  opacity: 1;
}

/* Mobile menu */
.bl-mobile-menu {
  display: none;
  position: fixed;
  top: 88px;
  left: 24px;
  right: 24px;
  z-index: 999999;
  background: rgba(13, 13, 13, 0.97);
  border: 1px solid var(--bl-nav-border);
  border-radius: 20px;
  padding: 16px;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: transform 0.15s ease, opacity 0.15s ease;
  will-change: transform, opacity;
}

.bl-mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.bl-mobile-menu a {
  display: block;
  color: var(--bl-nav-text-muted);
  text-decoration: none;
  font-family: var(--bl-nav-font);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 12px;
  transition: color 0.1s ease, background 0.1s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.bl-mobile-menu a:hover,
.bl-mobile-menu a.active {
  color: var(--bl-nav-text);
  background: rgba(255, 255, 255, 0.06);
}

.bl-mobile-menu .bl-mobile-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--bl-nav-border);
}

.bl-mobile-menu .bl-mobile-actions a {
  flex: 1;
  text-align: center;
  padding: 12px 16px;
}

/* Responsive */
@media (max-width: 900px) {
  .bl-nav-links {
    display: none;
  }

  .bl-nav-actions {
    display: none;
  }

  .bl-hamburger {
    display: flex;
  }

  .bl-mobile-menu {
    display: flex;
  }

  .bl-mobile-overlay {
    display: block;
    pointer-events: none;
  }

  .bl-mobile-overlay.open {
    pointer-events: auto;
  }

  .bl-navbar-inner {
    padding: 0 8px 0 20px;
  }
}

@media (max-width: 480px) {
  .bl-navbar {
    padding: 8px 12px;
  }

  .bl-mobile-menu {
    left: 12px;
    right: 12px;
    top: 80px;
  }
}
/* ==================================================== */
/* GLOBAL CONTACT FORM OVERRIDES                        */
/* ==================================================== */

.wixui-text-input__input,
.wixui-text-box__input,
.wixui-dropdown__input {
    background-color: #EBEEF4 !important;
    border: 2px solid transparent !important;
    border-radius: 8px !important;
    color: #1A1A1A !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 15px !important;
    padding: 12px 16px !important;
    box-shadow: none !important;
    transition: all 0.2s ease !important;
    box-sizing: border-box !important;
    width: 100% !important;
}

.wixui-text-box__input {
    resize: vertical !important;
    min-height: 120px !important;
    padding-top: 16px !important;
}

.wixui-text-input__input::-webkit-input-placeholder, 
.wixui-text-box__input::-webkit-input-placeholder { 
    color: #6C7280 !important; 
    font-weight: 400 !important; 
}

.wixui-text-input__input::placeholder, 
.wixui-text-box__input::placeholder { 
    color: #6C7280 !important; 
    font-weight: 400 !important; 
}

.wixui-text-input__input:hover, 
.wixui-text-box__input:hover, 
.wixui-dropdown__input:hover { 
    background-color: #E2E6EF !important; 
}

.wixui-text-input__input:focus, 
.wixui-text-box__input:focus, 
.wixui-dropdown__input:focus {
    border-color: #8C52FF !important;
    box-shadow: 0 0 0 4px rgba(140, 82, 255, 0.15) !important;
    outline: none !important;
    background-color: #FFFFFF !important;
}

.wixui-text-input__label, 
.wixui-text-box__label, 
.wixui-dropdown__label {
    font-family: 'Inter', sans-serif !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #FFFFFF !important;
    margin-bottom: 8px !important;
    display: inline-block !important;
}

/* Fix Wix inner div backgrounds */
/* Removed aggressive transparent backgrounds that hide inputs */
.pUnTVX { background: transparent !important; }

.wixui-dropdown__button { 
    border: none !important; 
    background: transparent !important; 
}
/* ==================================================== */
/* GLOBAL CONTACT FORM OVERRIDES                        */
/* ==================================================== */

.wixui-text-input__input,
.wixui-text-box__input,
.wixui-dropdown__input {
    background-color: #EBEEF4 !important;
    border: 2px solid transparent !important;
    border-radius: 8px !important;
    color: #1A1A1A !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 15px !important;
    padding: 12px 16px !important;
    box-shadow: none !important;
    transition: all 0.2s ease !important;
    box-sizing: border-box !important;
    width: 100% !important;
}

.wixui-text-box__input {
    resize: vertical !important;
    min-height: 120px !important;
    padding-top: 16px !important;
}

.wixui-text-input__input::-webkit-input-placeholder, 
.wixui-text-box__input::-webkit-input-placeholder { 
    color: #6C7280 !important; 
    font-weight: 400 !important; 
}

.wixui-text-input__input::placeholder, 
.wixui-text-box__input::placeholder { 
    color: #6C7280 !important; 
    font-weight: 400 !important; 
}

.wixui-text-input__input:hover, 
.wixui-text-box__input:hover, 
.wixui-dropdown__input:hover { 
    background-color: #E2E6EF !important; 
}

.wixui-text-input__input:focus, 
.wixui-text-box__input:focus, 
.wixui-dropdown__input:focus {
    border-color: #8C52FF !important;
    box-shadow: 0 0 0 4px rgba(140, 82, 255, 0.15) !important;
    outline: none !important;
    background-color: #FFFFFF !important;
}

.wixui-text-input__label, 
.wixui-text-box__label, 
.wixui-dropdown__label {
    font-family: 'Inter', sans-serif !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #FFFFFF !important;
    margin-bottom: 8px !important;
    display: inline-block !important;
}

/* Fix Wix inner div backgrounds */
/* Removed aggressive transparent backgrounds that hide inputs */
.pUnTVX { background: transparent !important; }

.wixui-dropdown__button { 
    border: none !important; 
    background: transparent !important; 
}


/* Ensure inputs keep their background even if other Wix classes try to override */
input.wixui-text-input__input, 
textarea.wixui-text-box__input, 
.wixui-dropdown__input {
    background-color: #EBEEF4 !important;
}

input.wixui-text-input__input:hover, 
textarea.wixui-text-box__input:hover, 
.wixui-dropdown__input:hover {
    background-color: #E2E6EF !important;
}

input.wixui-text-input__input:focus, 
textarea.wixui-text-box__input:focus, 
.wixui-dropdown__input:focus {
    background-color: #FFFFFF !important;
}

/* Country Code Dropdown Styling */
select.wixui-dropdown__input {
    background-color: #EBEEF4 !important;
    color: #333 !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    padding: 10px 12px !important;
    border: 2px solid transparent !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

select.wixui-dropdown__input:hover {
    background-color: #E2E6EF !important;
}

select.wixui-dropdown__input:focus {
    background-color: #FFFFFF !important;
    border-color: #7C3AED !important;
    outline: none !important;
}

select.wixui-dropdown__input option {
    background-color: #2a2a2a;
    color: #fff;
    padding: 8px 12px;
}
