.header-sentinel{
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
  opacity: 0;
}


.omega-header{
  position: sticky; 
  top: 0;
  z-index: 1000;
  overflow: visible;
  isolation: isolate;

  background: linear-gradient(90deg, rgba(0,120,175,0.95) 0%, rgba(26,79,150,0.95) 55%, rgba(115,44,128,0.95) 100%);
  padding: 40px 0 50px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.45);

  transform: translateY(0);
  transition:
    transform 240ms cubic-bezier(.2,.8,.2,1),
    padding 240ms cubic-bezier(.2,.8,.2,1),
    box-shadow 240ms cubic-bezier(.2,.8,.2,1),
    background 240ms cubic-bezier(.2,.8,.2,1),
    border-color 240ms cubic-bezier(.2,.8,.2,1),
    backdrop-filter 240ms cubic-bezier(.2,.8,.2,1);

  will-change: transform, padding;
  border-bottom: 1px solid transparent;
}


.omega-header.is-top{
  background: linear-gradient(90deg, rgba(0,120,175,0.95) 0%, rgba(26,79,150,0.95) 55%, rgba(115,44,128,0.95) 100%);
  box-shadow: none;
  
  backdrop-filter: none;
}


.omega-header.is-scrolled{
  background: rgba(5, 11, 24, 0.78);
  backdrop-filter: blur(10px) saturate(1.15);
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 14px 34px rgba(0,0,0,0.42);
}


.omega-header.is-compact{
  padding: 18px 0 10px;
}


.omega-header.is-hidden{
  transform: translateY(-110%);
}


.omega-header::before{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.06), transparent 60%);
  opacity: 0.75;
  pointer-events: none;
  z-index: 1000;
}

.omega-header.is-top::before{
  opacity: 0.35;
}

.omega-header > .container{
  position: relative;
  z-index: 1;
}

.omega-top{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 20px;
}








/* Premium social icons (match circular reference style)
   Scoped to the header to avoid footer overrides */
.omega-header .omega-social{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
}
.omega-header .omega-social a{
  text-decoration:none;
  color:#fff;
  display:grid;
  place-items:center;
  padding:2px;
}
.omega-header .omega-social a i{
  width:78px;
  height:78px;
  border-radius:999px;
  display:grid;
  place-items:center;
   background:transparent !important;
   border:2px solid rgba(255,255,255,0.85) !important;
  font-size:30px;
  color:rgba(255,255,255,0.95);
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.omega-header .omega-social a .social-label{ display:none !important; }
.omega-header .omega-social a:hover i,
.omega-header .omega-social a:focus-visible i{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,1);
  background: rgba(255,255,255,0.06);
}
.omega-header .omega-social a:focus-visible{
  outline:2px solid rgba(255,255,255,0.85);
  outline-offset:6px;
  border-radius:999px;
}

@media (max-width: 920px){
  .omega-header .omega-social{ gap:16px; }
  .omega-header .omega-social a i{ width:62px; height:62px; font-size:24px; }
}

@media (max-width: 520px){
  .omega-header .omega-social{ gap:12px; }
  .omega-header .omega-social a i{ width:50px; height:50px; font-size:20px; border-width:2px; }
}

.omega-logo { justify-self: center; }
.omega-logo-img { width: 190px; height: auto; }

.omega-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}




.site-search{
  --search-h: 44px;
  --search-radius: 999px;
  --search-border: rgba(255,255,255,0.20);
  --search-bg: rgba(5,10,24,0.88);
  --search-bg2: rgba(5,10,24,0.96);
  --search-accent: #33c1ff;

  position: relative;
  /* Slightly shorter so the Omega logo reads perfectly centred */
  width: clamp(170px, 18vw, 215px);
}


.site-search input{
  width: 90%;
  height: var(--search-h);
  padding: 0 16px 0 44px; 
  border-radius: var(--search-radius);
  border: 1px solid var(--search-border);

  
  background:
    url("images/search-icon.png") no-repeat 16px 50%,
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.00)),
    linear-gradient(180deg, var(--search-bg), var(--search-bg2));

  background-size: 16px 16px;

  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0.06em;
  outline: none;

  box-shadow:
    0 10px 24px rgba(0,0,0,0.28),
    inset 0 0 0 1px rgba(0,0,0,0.20);

  transition: border .25s ease, box-shadow .25s ease, background .25s ease;
}

.site-search input::placeholder{
  color: rgba(255,255,255,0.55);
}


.site-search input:focus{
  border-color: rgba(51,193,255,0.55);
  box-shadow:
    0 14px 34px rgba(0,0,0,0.45),
    0 0 0 4px rgba(51,193,255,0.16),
    inset 0 0 0 1px rgba(0,0,0,0.18);
}


.search-results{
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;

  border-radius: 16px;
  overflow: hidden;

  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.00)),
    rgba(5,10,24,0.96);

  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 26px 60px rgba(0,0,0,0.75);

  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 200;
}

.search-results.open{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


.search-results{
  max-height: min(380px, 55vh);
  overflow-y: auto;
}


.search-results::-webkit-scrollbar{
  width: 10px;
}
.search-results::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,0.18);
  border-radius: 999px;
  border: 2px solid rgba(5,10,24,0.96);
}
.search-results::-webkit-scrollbar-track{
  background: transparent;
}


.search-result{
  display: block;
  padding: 13px 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.92);
  text-decoration: none;

  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background .16s ease, color .16s ease;
}

.search-result:last-child{
  border-bottom: none;
}

.search-result:hover,
.search-result.active{
  background: rgba(51,193,255,0.16);
  color: #ffffff;
}


.search-result strong{
  color: var(--search-accent);
  font-weight: 700;
}


.search-empty{
  padding: 14px 18px;
  font-size: 12px;
  opacity: 0.75;
  text-align: center;
}


@media (max-width: 820px){
  .site-search{
    width: min(92vw, 520px);
  }
}

@media (max-width: 520px){
  .site-search{
    width: min(88vw, 420px);
  }

  .site-search input{
    height: 42px;
    padding-left: 42px;
    font-size: 13px;
  }

  .search-results{
    border-radius: 14px;
    max-height: min(320px, 50vh);
  }
}




.header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  transition: transform .2s ease, filter .2s ease;
}
.header-icon .icon-svg {
  width: 26px; height: 26px;
  fill: none; stroke: #e9eefb;
  stroke-width: 1; stroke-linecap: round; stroke-linejoin: round;
}
.header-icon:hover {
  transform: translateY(-1px);
  filter: drop-shadow(0 0 10px rgba(79,201,255,0.65));
}


.mobile-hamburger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.55);
  background: rgba(5,10,24,0.20);
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.mobile-hamburger:hover {
  transform: translateY(-1px);
  border-color: rgba(51,193,255,0.95);
  background: rgba(51,193,255,0.12);
}
.mobile-hamburger .burger { width: 20px; height: 14px; position: relative; }
.mobile-hamburger .burger span {
  position: absolute; left: 0;
  height: 2px; border-radius: 999px;
  background: rgba(255,255,255,0.95);
  transition: transform .35s cubic-bezier(.19,1,.22,1), opacity .2s ease, width .35s cubic-bezier(.19,1,.22,1);
}
.mobile-hamburger .burger span:nth-child(1) { top: 0; width: 20px; }
.mobile-hamburger .burger span:nth-child(2) { top: 6px; width: 16px; }
.mobile-hamburger .burger span:nth-child(3) { top: 12px; width: 20px; }
.mobile-hamburger[aria-expanded="true"] .burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mobile-hamburger[aria-expanded="true"] .burger span:nth-child(2) { opacity: 0; }
.mobile-hamburger[aria-expanded="true"] .burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }


.omega-nav { margin-top: 22px; }
.omega-nav ul {
  display: flex; align-items: center; justify-content: center;
  gap: 30px; padding-left: 0; list-style: none;
}
.omega-nav li { position: relative; list-style: none; padding-bottom: 14px; }
.omega-nav > ul > li > a {
  position: relative; display: inline-block; padding: 4px 0;
  font-family: "Cinzel", serif; font-weight: 600;
  font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  transition: color .25s ease, transform .25s ease;
}
/* removed: underline used a::after */
.omega-nav > ul > li:hover > a { color: #33c1ff; transform: translateY(-1px); }
/* removed: hover underline used a::after */
.omega-nav li.dropdown > a::after { content: " ▾"; font-size: 10px; opacity: .75; }


.omega-nav li.nav-cta{ margin-left: 10px; }
.omega-nav a.nav-cta-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, rgba(10,141,234,1), rgba(90,47,186,1));
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 14px 34px rgba(0,0,0,.45);
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.omega-nav a.nav-cta-btn:hover{ transform: translateY(-1px); box-shadow: 0 18px 40px rgba(0,0,0,.55); }


.dropdown { position: relative; }
.mega-menu{
  position:absolute;
  left:50%;
  top:calc(100% + 10px);
  transform:translateX(-50%) translateY(4px) scale(.99);
  width:min(720px, 92vw);
  padding:16px 18px;
  border-radius:16px;
  background:rgba(6,10,27,.92);
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 24px 64px rgba(0,0,0,.62);
  backdrop-filter:blur(14px);

  display:flex;
  gap:18px;
  max-height:min(360px, 70vh);
  overflow:auto;

  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .18s ease, visibility .18s ease, transform .18s ease;
  z-index:30;
}


.mega-menu--compact{
  width:min(600px, 92vw);
  padding:16px 16px;
}
.mega-menu--compact .mega-right{ flex:0 0 220px; }
.mega-menu--compact .mega-left{ gap:12px; }

.mega-menu::before{
  content:"";
  position:absolute;
  top:-10px; left:50%;
  transform:translateX(-50%);
  border-width:0 10px 10px 10px;
  border-style:solid;
  border-color:transparent transparent rgba(6,10,27,.95) transparent;
}


.mega-menu::after{
  content:"";
  position:absolute;
  inset:-1px;
  pointer-events:none;
  border-radius:inherit;
  background:
    radial-gradient(900px 260px at 12% 0%, rgba(51,193,255,.18), transparent 55%),
    radial-gradient(700px 240px at 92% 35%, rgba(139,88,255,.18), transparent 55%);
  opacity:.9;
  filter: saturate(1.1);
}



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

@keyframes omegaMegaPop{
  from{ transform:translateX(-50%) translateY(6px) scale(.98); filter: blur(2px); }
  to{ transform:translateX(-50%) translateY(0) scale(1); filter: blur(0); }
}

.dropdown:hover .mega-menu,
.dropdown.is-open .mega-menu{
  animation: omegaMegaPop .22s cubic-bezier(.2,1,.22,1);
}

.mega-left{
  flex:1;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
  align-content:start;
}


.mega-left.mega-left--2{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}


.mega-menu.has-right .mega-left{
  padding-right:14px;
  border-right:1px solid rgba(255,255,255,.10);
}

.mega-col h4{
  font-size:11px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(255,255,255,.72);
  margin:0 0 8px 0;
  display:flex;
  align-items:center;
  gap:8px;
}
.mega-icon {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(51,193,255,1), rgba(139,88,255,1));
  box-shadow: 0 0 0 3px rgba(51,193,255,.10), 0 10px 26px rgba(51,193,255,.18);
}


.mega-col h4{
  padding-left: 2px;
}
.mega-col h4::after{
  content:"";
  display:block;
  width: 34px;
  height: 2px;
  border-radius: 999px;
  margin-top: 8px;
  background: linear-gradient(90deg, rgba(51,193,255,1), rgba(139,88,255,1));
  opacity: .55;
}
.mega-col a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  font-size:12px;
  line-height:1.25;
  letter-spacing:.01em;
  color:rgba(255,255,255,.90);
  padding:7px 10px;
  border-radius:12px;
  text-decoration:none;
   background:transparent !important;
  position:relative;
  transition:background .18s ease, transform .18s ease, color .18s ease, box-shadow .18s ease;
}


.mega-col a::after{
  content:"\203A"; 
  color:rgba(255,255,255,.55);
  font-size:18px;
  line-height:1;
  transform:translateX(-2px);
  transition:transform .18s ease, color .18s ease;
}
.mega-col a:hover,
.mega-col a:focus-visible{
  background:linear-gradient(135deg, rgba(51,193,255,.14), rgba(139,88,255,.10));
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.08), 0 10px 26px rgba(0,0,0,.35);
  transform:translateY(-1px);
  color:#fff;
}
.mega-col a:hover::after,
.mega-col a:focus-visible::after{
  transform:translateX(2px);
  color:rgba(255,255,255,.85);
}

.mega-right{
  flex:0 0 240px;
  display:flex;
  flex-direction:column;
  gap:10px;
  align-self:stretch;
}


.mega-right .mega-card{
  border-radius:18px;
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 18px 46px rgba(0,0,0,.55);
}
.mega-right .mega-card h3{ letter-spacing:.12em; }
.mega-right .mega-card .btn{
  transition:transform .18s ease, box-shadow .18s ease;
}
.mega-right .mega-card .btn:hover{ transform:translateY(-1px); box-shadow:0 16px 40px rgba(0,0,0,.45); }
.btn-view-products:hover { background: #33c1ff; border-color: #33c1ff; transform: translateY(-1px); color: #050b18; }


.dropdown > a:focus-visible{ outline: 2px solid rgba(51,193,255,.8); outline-offset: 6px; border-radius: 10px; }



.drop-menu{
  position:absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  background: rgba(8,12,28,.92);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  box-shadow: 0 26px 70px rgba(0,0,0,.55);
  padding: 14px;
  display: grid;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  backdrop-filter: blur(14px);
}
.drop-menu::before{
  content:"LEGACY";
  display:block;
  font-size:11px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(255,255,255,.70);
  padding:2px 6px 6px;
}
.drop-menu a{
  color: rgba(255,255,255,.92);
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: .02em;
  font-size:12px;
  line-height:1.25;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.drop-menu a:hover{
  background:linear-gradient(135deg, rgba(51,193,255,.14), rgba(139,88,255,.10));
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.08), 0 10px 26px rgba(0,0,0,.35);
  transform: translateY(-1px);
}

.omega-nav li.dropdown:hover .drop-menu,
.omega-nav li.dropdown:focus-within .drop-menu{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


.omega-nav li.dropdown.is-open .drop-menu{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


.mobile-menu-overlay {
  position: fixed; inset: 0;
  background: rgba(2,5,15,0.75);
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  z-index: 60;
}
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }

.mobile-menu-panel {
  position: fixed; top: 0; right: 0;
  width: min(360px, 86vw);
  height: auto;
  height: 100dvh;
  background:
    radial-gradient(circle at top, rgba(64,150,255,0.22), transparent 60%),
    radial-gradient(circle at bottom, rgba(164,82,212,0.30), #050b18);
  box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.19,1,.22,1);
  z-index: 70;
  display: flex; flex-direction: column;
}
.mobile-menu-panel.active { transform: translateX(0); }

.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.mobile-menu-header img { max-height: 32px; }

.mobile-close {
  width: 32px; height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.7);
  background: rgba(5,10,24,0.55);
  color: #fff;
  font-size: 16px;
}

.mobile-menu-body {
  margin: 0 !important;
  padding: 0 !important;
  overflow-y: auto;
  overflow-x: hidden;
}

.mobile-nav { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.mobile-nav > li > a {
  display: block;
  padding: 10px 2px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-accordion {
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.16);
  overflow: hidden;
  background: rgba(5,10,24,0.85);
}
.mobile-accordion + .mobile-accordion { margin-top: 10px; }

.accordion-toggle {
  width: 90%;
  padding: 10px 12px;
  background: transparent;
  border: none;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}
.accordion-toggle i { font-size: 12px; color: rgba(255,255,255,0.75); transition: transform .25s ease; }


.accordion-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 8px;
}
.accordion-link{
  flex: 1;
  padding: 10px 12px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}
.accordion-link:hover{ color: #33c1ff; }

.accordion-head .accordion-toggle{
  width: 44px;
  padding: 10px 10px;
  justify-content:center;
}

.mobile-accordion.open .accordion-head .acc-chevron{
  transform: rotate(180deg);
}
.accordion-head .acc-chevron{
  transition: transform .25s ease;
}


#digital{ scroll-margin-top: 140px; }

.mobile-accordion.open .accordion-toggle i { transform: rotate(180deg); }

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: radial-gradient(circle at top, rgba(28,109,203,0.35), rgba(4,9,20,0.98));
  transition: max-height .3s ease;
}

.accordion-heading {
  padding: 10px 12px 6px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(228,235,255,0.8);
}

.accordion-content ul { list-style: none; margin: 0; padding: 0 0 10px; }
.accordion-content li a {
  display: block;
  padding: 8px 12px;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.accordion-content li a:hover { background: rgba(255,255,255,0.04); }


.mobile-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, rgba(10,141,234,1), rgba(90,47,186,1));
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 14px 34px rgba(0,0,0,.45);
  margin-top: 14px;
  text-decoration: none;
}
.mobile-cta:hover{ transform: translateY(-1px); }

.mobile-social { display: flex; gap: 10px; margin-top: 18px; }
.mobile-social a {
  width: 38px; height: 38px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.55);
  background: rgba(5,10,24,0.18);
  display: inline-flex; align-items: center; justify-content: center;
}
.mobile-social a i { font-size: 16px; color: rgba(255,255,255,0.92); }




.omega-hero {
  position: relative;
  height: 85vh;
  height: 85svh;
  height: 85dvh;
  min-height: 480px;
  padding: 60px 0 80px;
  overflow: hidden;
    background: #000;
}

.hero-slider { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom right;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at left,
    rgba(5,10,24,0.96) 0%,
    rgba(5,10,24,0.55) 40%,
    transparent 70%
  );
}

.hero-content {
  position: relative;
  z-index: 5;
  height: auto;
  display: flex;
  align-items: center;
}

.hero-left { max-width: 580px; }


.hero-kicker{
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.hero-heading span{
  color: rgba(51,193,255,0.95);
}

.hero-heading {
  font-family: "Cinzel", serif;
  font-size: 34px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 14px;
}

.hero-subheading {
  font-size: 16px;
  letter-spacing: 0.18em;
  color: #e3ecff;
  line-height: 1.6;
  margin-bottom: 26px;
  max-width: 520px;
}


.hero-actions {
  display: flex;              
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}


.btn-primary,
.btn-secondary {
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease,
    color .25s ease;
display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  min-width: 180px;

}

.btn-primary {
  background: linear-gradient(135deg, #0a8dea, #5a2fba);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.55);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.75);
}

.btn-secondary {
  background: #2b72c6;
  color: #ffffff;
  box-shadow: 0 7px 18px rgba(0,0,0,0.55);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 11px 24px rgba(0,0,0,0.3);
}






@media (max-width: 768px) {
  .hero-actions {
    justify-content: center;
  }
}



.btn-play {
  width: 60px; height: 60px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.7);
  background: transparent;
  display: inline-flex; align-items: center; justify-content: center;
  position: relative;
  margin-left: 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn-play::before {
  content: "";
  position: absolute; inset: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.6);
  opacity: 0.65;
}
.play-icon { font-size: 18px; color: #fff; transform: translateX(2px); }
.btn-play:hover {
  border-color: #33c1ff;
  background: rgba(5,10,24,0.55);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 30px rgba(0,0,0,0.85);
}

.hero-pagination {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 6;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
  cursor: pointer;
  border: none;
  transition: all .25s ease;
}
.hero-dot.active {
  background: #33c1ff;
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(51,193,255,0.9);
}

.hero-down {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(51,193,255,0.95);
  font-size: 28px;
  z-index: 6;
  text-shadow: 0 10px 24px rgba(0,0,0,0.55);
}

.hero-slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-video-slide {
  pointer-events: none; 
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover; 
  object-position: center bottom; 
  background: transparent;
}









.omega-difference .omega-difference-inner{
  position: relative;
  padding: clamp(60px, 7vw, 110px) 0;
  overflow: hidden;

  /* Full-bleed background (kills left/right gaps even inside .container) */
  background-image: url("images/omega-difference-banner.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  /* keep content readable */
  padding-left: clamp(18px, 6vw, 120px);
  padding-right: clamp(18px, 6vw, 120px);
  height: auto;
}




.od-header { margin-bottom: 28px; }
.od-title {
  font-family: "Cinzel", serif;
  font-size: 28px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 8px;
  text-align: center;
}
.od-subtitle {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(224,235,255,0.95);
  text-align: center;
}


.od-items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px 16px;
  align-items: start;
  justify-items: center;
}
.od-item { display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 220px; }
.od-icon {
  width: 110px; height: 110px; border-radius: 999px;


  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;

  overflow: hidden;
}
.od-icon img { width: 82%; height: 82%; object-fit: contain; }
.od-item-text {
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f5f7ff;
}




.premium-brands{
  position: relative;
  
  padding: clamp(44px, 6vw, 72px) 0 clamp(58px, 8vw, 90px);
  background: #fff url("images/prem_brands_bk.jpg") center center / cover no-repeat;
  min-height: clamp(520px, 62vh, 760px);
  overflow: hidden;

  /* Full-bleed override (kills side gaps) */
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}


.premium-brands::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(1200px 360px at 50% 0%, rgba(255,255,255,0.92), rgba(255,255,255,0) 60%),
    radial-gradient(900px 320px at 50% 100%, rgba(0,0,0,0.07), rgba(0,0,0,0) 60%);
  opacity:.55;
}


.premium-brands .container{
  position: relative;
  display: block;
  padding-inline: clamp(18px, 6vw, 120px);
  z-index: 1;
}


.brands-title{
  font-family: "Cinzel", serif;
  font-size: clamp(22px, 5vw, 34px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  color: #5aa7df;
  margin: 0 0 14px;
}


.brands-logos{
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px 26px;
  align-items: center;
  justify-items: center;
  max-width: 960px;
}

.brands-logos .brand{
  width: 90%;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height: 54px;
}

.brands-logos img{
  width: 90%;
  max-width: 180px;
  height: 46px;
  object-fit: contain;
  display: block;
  opacity: 0.97;
  filter: contrast(1.02) saturate(1.02);
  transition: transform 0.25s ease, opacity 0.25s ease;
}



@media (hover:hover){
  .brands-logos img:hover{ transform: translateY(-2px); opacity: 1; }
}


@media (max-width: 980px){
  .brands-logos{ grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 720px; }
  .brands-logos img{ height: 40px; max-width: 160px; }
}

@media (max-width: 560px){
  .premium-brands .container{ padding-inline: 18px; }
  .brands-title{ font-size: 22px; line-height: 1.35; }
  .brands-logos{ grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 18px; }
  .brands-logos .brand{ min-height: 48px; }
  .brands-logos img{ height: 34px; max-width: 150px; }
  
  .premium-brands{ background-position: center 100%; background-size: 180% auto; min-height: 620px; }
}




.omega-path{
  position: relative;
  overflow: hidden;
   margin-top: 0 !important;
  isolation: isolate;
 

  
  background-image: url("./images/bk_flip-cards.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: #fff;
}


.omega-path::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;

}


.omega-path-inner{
  position: relative;
  z-index: 1;
}


.omega-path::after{
  display:none !important; 
}

.omega-path-title {
  font-family: "Cinzel", serif;
  font-size: 34px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 0px;
  text-align: center;   
  padding: 80px 0px 0px 0px;
}

.omega-path-subtitle {
  font-size: 16px;
  letter-spacing: 0.18em;
  color: #e3ecff;
  line-height: 1.6;
  margin-bottom: 26px;
  max-width: 520px;
  text-align: center;   
  margin: 0 auto;       
  padding: 0px 0px 50px 0px;
}


.flip-grid {
  display: grid;
   grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 28px 32px;
}

.flip-card { 
  max-width: 250px;
  perspective: 1200px; 
  cursor: pointer; 
  outline: none; 
}

.flip-inner {
  position: relative;
  width: 90%;
  height: 340px;
  border-radius: 18px;
  transform-style: preserve-3d;
  transition: transform .7s cubic-bezier(.19,1,.22,1);
}
.flip-card.is-flipped .flip-inner { transform: rotateY(180deg); }

.flip-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}


.flip-front {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(0,0,0,0.25));
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}
.flip-img { flex: 1; background-size: cover; background-position: center; }
.flip-label {
  font-family: "Cinzel", serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 12px;
  text-align: center;
  background: rgba(5,10,24,0.85);
}
.flip-cta {
  margin: 12px auto 14px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.6);
  background: transparent;
  color: #ffffff;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all .25s ease;
}
.flip-cta:hover { background: #33c1ff; border-color: #33c1ff; color: #050b18; }


.flip-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, rgba(10,141,234,0.95), rgba(90,47,186,0.95));
  padding: 18px 18px 20px;
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 18px 40px rgba(0,0,0,0.3);
  justify-content: space-between;
}
.flip-back h3 {
  font-family: "Cinzel", serif;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.flip-back p {
  font-size: 12px;
  line-height: 1.55;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.95);
}
.flip-back ul { list-style: none; padding: 0; margin: 8px 0 12px; }
.flip-back ul li {
  font-size: 11px;
  letter-spacing: 0.08em;
  padding-left: 14px;
  position: relative;
  margin-bottom: 4px;
}
.flip-back ul li::before { content: "•"; position: absolute; left: 0; color: #33c1ff; }

.flip-close {
  align-self: center;
  margin-top: auto;
  padding: 7px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.7);
  background: transparent;
  color: #ffffff;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all .25s ease;
}
.flip-close:hover { background: rgba(255,255,255,0.15); }




@media (hover: hover) and (pointer: fine) {
  .flip-card:hover .flip-inner {
    transform: rotateY(180deg);
  }

}












.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(5,10,24,0.82);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  z-index: 5000;
  pointer-events: none;
}
.modal-overlay.open { opacity: 1; visibility: visible; pointer-events: auto; }

.modal {
  background: #050b18;
  border-radius: 16px;
  padding: 24px 24px 20px;
  width: 500px;
  height: 450px;
  
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  position: relative;

  background-image: url("./images/images/workbench_bk.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: #fff;
}






.modal.modal-video{
  width: min(960px, 90vw);
  height: min(540px, 70vh);
  padding: 14px;
}






.modal-close {
  position: absolute; top: 10px; right: 12px;
  width: 32px; height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.6);
  background: rgba(5, 10, 24, 0.733);
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
}

.modal-title {
  font-family: "Cinzel", serif;
  font-size: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-align: center;
  color: rgba(5, 10, 24, 0.733); 
}
.modal-intro { 
  font-size: 14px; 
  line-height: 1.6; 
  color: rgba(5, 10, 24, 0.733); 
  margin-bottom: 18px; 
text-align: center;
}

.modal-form .form-row { display: flex; flex-direction: column; gap: 4px; margin-bottom: 12px; }
.modal-form label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(5,10,24,0.95);
}
.modal-form input, .modal-form textarea {
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255, 255, 255, 0.95);
  color: rgba(5,10,24,0.95);
  padding: 10px 12px;
  font-size: 13px;
  outline: none;
}
.field-error { display:block; font-size:12px; margin-top:6px; color: rgba(255, 0, 0, 0.9); }
.is-invalid { box-shadow: 0 0 0 2px rgba(255,95,95,.7) !important; }

.form-status { margin-top: 12px; text-align: center; font-size: 13px; color: rgba(255,255,255,0.9); min-height: 18px; }

.modal-btn.is-loading { opacity: .85; }
.btn-spinner {
  display:none; width:16px; height:16px; margin-left:10px;
  border:2px solid rgba(255,255,255,.35);
  border-top-color: rgba(255,255,255,.95);
  border-radius:999px;
  vertical-align: middle;
  animation: spin .8s linear infinite;
}
.modal-btn.is-loading .btn-spinner { display:inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }





.video-wrapper{
  width: 90%;
  height: auto;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.video-wrapper video{
  width: 90%;
  height: auto;
  display: block;
  object-fit: contain;
  background: #000;
}






@media (max-width: 1100px) {
  .flip-grid { grid-template-columns: repeat(3, 1fr); }
  .brand-logos { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 992px) {
  .omega-header { padding: 20px 0 10px; }

  .omega-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
  }

  .omega-social{display:flex;align-items:center;gap:14px;justify-content:center;}
  .omega-logo { order: 1; }

  
  .omega-actions {
    order: 2;
    width: 90%;
    justify-content: center;
    gap: 22px;
    position: relative;
  }

  .omega-search { display: none !important; }

  .mobile-hamburger {
    display: inline-flex;
    position: absolute;
    top: -58px;
    right: 0;
  }

  .omega-nav { display: none; }

  .omega-hero { min-height: 520px; padding: 50px 0 70px; }
  .hero-heading { font-size: 28px; }
  .hero-subheading { font-size: 14px; }

  .brand-logos { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  
  .od-items { grid-template-columns: repeat(5, minmax(0,1fr)); gap: 10px 8px; }
  .od-icon { width: 56px; height: 56px; margin-bottom: 6px; }
  .od-item-text { font-size: 8px; letter-spacing: 0.10em; line-height: 1.35; }

  .od-title { font-size: 20px; }
  .od-subtitle { font-size: 11px; letter-spacing: 0.12em; }

  .flip-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .flip-inner { height: 300px; }

  .premium-title { font-size: 22px; letter-spacing: 0.12em; }
}

@media (max-width: 480px) {
  .omega-hero { height: auto; min-height: 540px; padding: 40px 20px 60px; }
  .hero-heading { font-size: 22px; letter-spacing: 0.18em; }
  .hero-subheading { font-size: 13px; letter-spacing: 0.16em; }
  .hero-pagination { justify-content: flex-start; left: 24px; transform: none; }
  .hero-down { left: 24px; transform: none; }
  .flip-inner { height: 280px; }
  .flip-label { font-size: 11px; }
}


.omega-testimonials{
  background:#fff;


  position: relative;
  padding: 90px 0 0;
  min-height: 520px;
  overflow: hidden;
  isolation: isolate;
  
}



.testimonials-title{
  text-align:center;
  font-family:"Cinzel", serif;
  font-weight: 600;
  font-size: clamp(24px, 3vw, 42px);
  letter-spacing: .14em;
  text-transform: uppercase;
  color:#6bb6ea; 
  margin-bottom: 22px;
}

.testimonials-stars{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-bottom: 28px;
}

.testimonials-stars span{
  font-size: 34px;
  line-height: 1;
  color:#2e7ac2;
}

.testimonial-slider{
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr 70px;
  align-items: center;
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}

.testimonial-card{
  text-align:center;
  padding: 10px 18px;
}

.t-quote{
  font-size: 22px;
  line-height: 1.6;
  letter-spacing: .18em;
  color:#0e0e10;
  max-width: 760px;
  margin: 0 auto 26px;
}

.t-person{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 18px;
  margin-top: 10px;
}

.t-avatar{
  width: 64px;
  height: 64px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 10px 26px rgba(0,0,0,.18);
}

.t-person-text{
  text-align:left;
  display:flex;
  flex-direction:column;
  gap: 4px;
  padding-left: 14px;
  border-left: 2px solid rgba(14,14,16,.45);
}

.t-name{
  font-size: 18px;
  letter-spacing: .10em;
  font-weight: 700;
  color:#0e0e10;
}

.t-role{
  font-size: 16px;
  letter-spacing: .12em;
  color: rgba(14,14,16,.75);
}

.t-nav{
  width: 54px;
  height: 54px;
  border: none;
  background: transparent;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  transition: transform .2s ease, background .2s ease;
}

.t-nav span{
  font-size: 62px;
  line-height: 1;
  color:#6bb6ea;
}

.t-nav:hover{
  background: rgba(107,182,234,.12);
  transform: translateY(-1px);
}

@media (max-width: 900px){
  .testimonial-slider{
    grid-template-columns: 50px 1fr 50px;
  }
  .t-quote{
    font-size: 18px;
    letter-spacing: .14em;
  }
  .t-nav span{ font-size: 54px; }
}

@media (max-width: 600px){
  .omega-testimonials{ padding: 54px 0 58px; }

  .testimonial-slider{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .t-nav{
    position:absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
  }

  .t-prev{ left: 6px; }
  .t-next{ right: 6px; }

  .t-nav span{ font-size: 48px; }

  .t-person-text{
    padding-left: 12px;
  }
  
}





.omega-contact{
  position: relative;
  padding: 90px 0 0;
  overflow: hidden;
  isolation: isolate;
  background: none !important;
}


.omega-contact::before{
  content:"";
  position:absolute;
  inset:0;
  background: url("images/contact_bk.jpg") center top / contain no-repeat;
  z-index:0;
  pointer-events:none;
}


.omega-contact::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.10);
  z-index:1;
  pointer-events:none;
}


.omega-contact .container{
  position: relative;
  z-index:2;
}


.omega-contact-top{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 60px);
  padding-bottom: 70px;
}


.omega-contact-media{
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.omega-contact-person{
  width: min(440px, 92%);
  height: auto;
  filter: drop-shadow(0 18px 45px rgba(0,0,0,0.35));
  transform: translateY(18px);
}


.omega-contact-card{
  justify-self: stretch;
  width: 90%;
  max-width: none;
  padding: clamp(28px, 3vw, 42px);
  border-radius: 28px;

  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 26px 70px rgba(0,0,0,0.40);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  margin-right: clamp(20px, 5vw, 80px);
}


.omega-contact-title{
  font-family: "Cinzel", serif;
  font-size: 30px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.95);
}

.omega-contact-subtitle{
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.92);
  margin-bottom: 28px;
}


.omega-contact-form{
  width: 90%;
}

.omega-form-row{
  display: grid;
  gap: 14px;
}

.omega-form-row.two{
  grid-template-columns: 1fr 1fr;
}

.omega-form-row.one{
  grid-template-columns: 1fr;
}

.omega-field label{
  display:block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.90);
  margin-bottom: 6px;
}

.omega-field input,
.omega-field textarea{
  width: 90%;
  box-sizing: border-box;
  padding: 14px 18px;
  margin-bottom: 14px;

  border: none;
  border-radius: 18px;

  background: rgba(255,255,255,0.95);
  color: #0b1632;
  font-size: 14px;
  outline: none;

  box-shadow: inset 0 0 0 1px rgba(10,30,80,0.10);
}

.omega-field textarea{
  min-height: 170px;
  resize: vertical;
}


.omega-field input:focus,
.omega-field textarea:focus{
  box-shadow:
    inset 0 0 0 2px rgba(78,156,255,0.55),
    0 0 0 7px rgba(78,156,255,0.14);
}


.omega-contact-btn{
  margin-top: 14px;
  width: 90%;
  padding: 16px 0;

  border: none;
  border-radius: 20px;
  cursor: pointer;

  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;

  background: rgba(78,156,255,0.50);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.omega-contact-btn:hover{
  transform: translateY(-2px);
  background: rgba(78,156,255,0.60);
  box-shadow: 0 20px 44px rgba(0,0,0,0.55);
}


.omega-contact-bottom{
  position: relative;
  background: #1b4f8f;
  padding: 40px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.12);
}


.omega-contact-bottom::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    to bottom,
    rgba(5,20,60,0.15) 0%,
    rgba(5,20,60,0.55) 100%
  );
  z-index:0;
  pointer-events:none;
}


.omega-contact-bottom::after{
  content:"";
  position:absolute;
  inset:0;
  background-image: radial-gradient(rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.22;
  z-index:1;
  pointer-events:none;
}

.omega-contact-bottom .container{
  position: relative;
  z-index:2;
}

.omega-contact-bottom-grid{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
}


.omega-contact-details{
  display: grid;
  gap: 22px;
}

.omega-detail{
  padding-left: 14px;
  border-left: 2px solid rgba(255,255,255,0.20);
}

.omega-detail-title{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  margin-bottom: 8px;
}

.omega-detail-text{
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
}


.omega-contact-map{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  min-height: 280px;
}

.omega-contact-map iframe{
  width: 90%;
  height: auto;
  min-height: 280px;
  border: 0;
  display: block;
}


@media (max-width: 1100px){
  .omega-contact-card{
    margin-right: 0;
    max-width: 760px;
    justify-self: end;
  }
}

@media (max-width: 900px){
  .omega-contact-top{
    grid-template-columns: 1fr;
    padding-bottom: 40px;
  }

  .omega-contact-media{
    min-height: 280px;
    justify-content: center;
  }

  .omega-contact-person{
    width: min(360px, 88%);
    transform: translateY(10px);
  }

  .omega-contact-card{
    max-width: 760px;
    justify-self: center;
  }

  .omega-contact-bottom-grid{
    grid-template-columns: 1fr 0.88fr;
    gap: 16px;
    align-items: stretch;
  }

  .omega-contact-map{ min-height: 200px; }
  .omega-contact-map iframe{ min-height: 200px; }
}
}

@media (max-width: 600px){
  .omega-contact{
    padding: 60px 0 0;
  }

  .omega-contact-title{
    font-size: 24px;
    letter-spacing: 0.18em;
  }

  .omega-contact-card{
    padding: 22px;
    border-radius: 22px;
  }

  .omega-form-row.two{
    grid-template-columns: 1fr;
  }

  .omega-contact-map{
    min-height: 240px;
  }

  .omega-contact-map iframe{
    min-height: 240px;
  }
}



.omega-form__status{margin-top:10px;font-size:13px;letter-spacing:.08em;text-align:center;color:rgba(255,255,255,.92);min-height:18px;}



.omega-footer{
  position: relative;
  color: rgba(255,255,255,0.92);
  background: #1e2328; 
  color: rgba(255,255,255,0.85);
  border-top: 1px solid rgba(255,255,255,0.10);
  overflow: hidden;
}


.omega-footer::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.10;
  pointer-events:none;
}


.omega-footer__top{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 56px;
  padding: 90px 0 60px;
}


.omega-footer__logo{
  max-width: 210px;
  margin-bottom: 22px;
}

.omega-footer__desc{
  font-size: 15px;
  line-height: 1.75;
  max-width: 460px;
  margin: 0 0 18px;
  color: rgba(255,255,255,0.95);
}

.omega-footer__meta{
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
}


.omega-footer__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.omega-footer__chip{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.omega-footer__chip:hover{
  transform: translateY(-1px);
  background: rgba(78,156,255,0.28);
  border-color: rgba(78,156,255,0.42);
}


.omega-footer__heading{
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 22px;
  color: rgba(255,255,255,0.98);
}


.omega-footer__list,
.omega-footer__links{
  list-style: none;
  padding: 0;
  margin: 0;
}

.omega-footer__list li{
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.84);
}


.omega-footer__links li{ margin-bottom: 12px; }

.omega-footer__links a{
  color: rgba(255,255,255,0.86);
  text-decoration: none;
  position: relative;
}

.omega-footer__links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-3px;
  width:100%;
  height:1px;
  background: rgba(78,156,255,0.65);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.omega-footer__links a:hover::after{
  transform: scaleX(1);
  transform-origin: left;
}


.omega-footer__addr{
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 16px;
  color: rgba(255,255,255,0.88);
}

.omega-footer__contactlines{
  margin: 0 0 12px;
  line-height: 1.7;
}

.omega-footer__contactlines a{
  color: rgba(255,255,255,0.95);
  text-decoration: none;
}
.omega-footer__contactlines a:hover{ text-decoration: underline; }

.omega-footer__hours{
  margin: 0;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.68);
}


.omega-footer__divider{
  position: relative;
  z-index: 1;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.18),
    transparent
  );
}


.omega-footer__bottom{
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0 28px;
  color: rgba(255,255,255,0.70);
  font-size: 12.5px;
}

.omega-footer__copy{ margin: 0; }

.omega-footer__legal{
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.omega-footer__legal a{
  color: rgba(255,255,255,0.70);
  text-decoration: none;
}
.omega-footer__legal a:hover{ color: #ffffff; }


@media (max-width: 900px){
  .omega-footer__top{
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    padding: 70px 0 50px;
  }

  .omega-footer__bottom{
    flex-direction: column;
    text-align: center;
  }

  .omega-footer__legal{
    justify-content: center;
  }
}

@media (max-width: 560px){
  .omega-footer__top{
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .omega-footer__actions{
    justify-content: center;
  }

  .omega-footer__logo{
    margin-inline: auto;
    display: block;
  }

  .omega-footer__desc{
    text-align: center;
    margin-inline: auto;
  }

  .omega-footer__meta{
    text-align: center;
  }
}



.omega-contact-form select{
  width:100%;
  height:52px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.92);
  color: #0b1020;
  font-size: 15px;
  outline: none;
}
.omega-contact-form select:focus{
  box-shadow: 0 0 0 4px rgba(51,193,255,.20);
  border-color: rgba(51,193,255,.55);
}

.omega-wetransfer{
  margin-top: 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
}
.omega-wetransfer-card{
  flex: 1 1 auto;
  display:flex;
  align-items:center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 44px rgba(0,0,0,.35);
}
.omega-wetransfer-logo{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  object-fit: contain;
  padding: 6px;
}
.omega-wetransfer-kicker{
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.70);
  margin-bottom: 4px;
}
.omega-wetransfer-copy{
  color: rgba(255,255,255,.92);
  font-weight: 700;
  line-height: 1.25;
}
.omega-wetransfer-copy a{ color: rgba(255,255,255,.98); text-decoration: underline; text-underline-offset: 3px; }
.omega-wetransfer-muted{
  display:block;
  margin-top: 4px;
  font-weight: 600;
  color: rgba(255,255,255,.78);
}

.omega-wetransfer-btn{
  flex: 0 0 auto;
  border: 0;
  cursor:pointer;
  border-radius: 999px;
  padding: 14px 18px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color:#fff;
  background: linear-gradient(135deg, rgba(10,141,234,1), rgba(90,47,186,1));
  box-shadow: 0 18px 44px rgba(0,0,0,.45);
  line-height: 1;
}
.omega-wetransfer-btn:hover{ transform: translateY(-1px); }
.omega-wetransfer-btn:active{ transform: translateY(0); }

@media (max-width: 900px){
  .omega-wetransfer{
    flex-direction: column;
    align-items: stretch;
  }
  .omega-wetransfer-btn{
    width:100%;
    padding: 14px 16px;
  }
}


.omega-modal{ position: fixed; inset: 0; display:none; z-index: 9999; }
.omega-modal[aria-hidden="false"]{ display:block; }
.omega-modal-backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
}
.omega-modal-panel{
  position: relative;
  width: min(860px, 92vw);
  margin: 6vh auto 0;
  padding: 22px 22px 18px;
  border-radius: 22px;
  background: rgba(10,12,28,.92);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 90px rgba(0,0,0,.65);
  color: rgba(255,255,255,.92);
}
.omega-modal-close{
  position:absolute; top: 12px; right: 12px;
  width: 38px; height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  cursor:pointer;
}
.omega-modal-title{
  margin: 6px 0 6px;
  font-size: 28px;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.omega-modal-sub{
  margin: 0 0 14px;
  color: rgba(255,255,255,.78);
}
.omega-modal-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.omega-modal-card{
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  padding: 14px 14px 12px;
}
.omega-modal-card-title{
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 8px;
}
.omega-modal-list{ margin: 0; padding-left: 18px; color: rgba(255,255,255,.86); }
.omega-modal-list li{ margin: 6px 0; }
.omega-modal-actions{
  display:flex;
  justify-content:flex-end;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.omega-modal-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color:#fff;
  background: linear-gradient(135deg, rgba(10,141,234,1), rgba(90,47,186,1));
  text-decoration:none;
  line-height:1;
}
.omega-modal-ghost{
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.92);
  cursor:pointer;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height:1;
}
@media (max-width: 720px){
  .omega-modal-panel{ margin-top: 4vh; padding: 18px 16px 14px; }
  .omega-modal-grid{ grid-template-columns: 1fr; }
}

.no-scroll{ overflow:hidden; }



.mega-menu{
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}
.mega-menu::-webkit-scrollbar{ width: 10px; }
.mega-menu::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.18);
  border-radius: 999px;
  border: 2px solid rgba(6,10,27,.92);
}
.mega-menu::-webkit-scrollbar-track{ background: transparent; }

.mega-col h4{
  margin: 0 0 10px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mega-col a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease;
}
.mega-col a:hover,
.mega-col a:focus-visible{
  transform: translateY(-1px);
}

.mega-right{ padding-left: 4px; }
.mega-right .promo-img{
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.10);
}
.promo-caption{
  line-height: 1.5;
  color: rgba(255,255,255,.78);
}
.mega-menu::before{
  top: -9px;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.35));
}


.omega-hero{ position: relative; }
.omega-hero::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height: min(180px, 20vh);
  background: linear-gradient(to bottom, rgba(5,11,24,0), rgba(5,11,24,1));
  pointer-events:none;
  z-index: 1;
}
.hero-down{
  animation: omega-bounce 1.8s ease-in-out infinite;
}
@keyframes omega-bounce{
  0%,100%{ transform: translateY(0); opacity:.85; }
  50%{ transform: translateY(8px); opacity:1; }
}
@media (max-width: 520px){
  .hero-down{ animation: none; }
}





section{ position: relative; }

.section-scroll{
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 9999;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;

  background: linear-gradient(135deg, rgba(10,141,234,1), rgba(90,47,186,1));
  border: 1px solid rgba(255,255,255,.22);
  text-decoration: none;

  box-shadow:
    0 18px 44px rgba(0,0,0,.55),
    0 0 0 8px rgba(51,193,255,.18),
    inset 0 0 0 1px rgba(0,0,0,.18);

  backdrop-filter: blur(8px) saturate(1.2);
  cursor: pointer;
  pointer-events: auto;
  animation: sectionArrowFloat 1.6s ease-in-out infinite;
}

.section-scroll:hover{
  transform: translateX(-50%) translateY(-2px);
  box-shadow:
    0 22px 54px rgba(0,0,0,.62),
    0 0 0 10px rgba(139,88,255,.18),
    inset 0 0 0 1px rgba(255,255,255,.12);
}

.section-scroll svg{
  width: 24px;
  height: 24px;
  stroke: #fff;
  stroke-width: 2.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.35));
}

@keyframes sectionArrowFloat{
  0%,100%{ transform: translateX(-50%) translateY(0); opacity: .95; }
  50%{ transform: translateX(-50%) translateY(10px); opacity: 1; }
}



.mobile-nav-accordion{ list-style: none; margin: 0; padding: 0; }
.mobile-nav-accordion .mobile-accordion{ margin-top: 10px; }




.mobile-menu-panel{
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg,#0a2a52,#4b2b73);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform .4s ease;
  display: flex;
  flex-direction: column;
}
.mobile-menu-panel.active{ transform: translateX(0); }

.mobile-menu-header{
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.mobile-logo{
  color:#fff;
  text-decoration:none;
  font-weight:800;
  letter-spacing:.1em;
}
.mobile-logo span{ font-weight:300; font-style:italic; }

.mobile-close{
  position:absolute;
  top:20px;
  right:20px;
  width:44px;
  height:44px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.4);
  background:none;
  color:#fff;
  font-size:22px;
}

.mobile-menu-body{
  padding:20px;
  overflow-y:auto;
}

.mobile-nav{
  list-style:none;
  padding:0;
  margin:0;
}
.mobile-nav > li > a,
.accordion-toggle{
  width:100%;
  display:block;
  padding:14px 16px;
  border-radius:999px;
  background:rgba(0,0,0,.35);
  color:#fff;
  text-decoration:none;
  font-weight:700;
  letter-spacing:.12em;
  text-align:left;
}

.mobile-accordion{ margin-top:12px; }
.accordion-panel{
  display:none;
  padding-left:14px;
}
.mobile-accordion.open .accordion-panel{ display:block; }

.accordion-panel a{
  display:block;
  padding:10px 0;
  color:rgba(255,255,255,.85);
  text-decoration:none;
}

.mobile-cta{
  margin:30px auto 10px;
  display:block;
  text-align:center;
  padding:14px 30px;
  border-radius:999px;
  background:linear-gradient(135deg,#0a8dea,#5a2fba);
  color:#fff;
  font-weight:800;
  text-decoration:none;
}

.mobile-socials{
  display:flex;
  justify-content:center;
  gap:20px;
  margin-top:20px;
}
.mobile-socials a{
  width:42px;height:42px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.4);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  text-decoration:none;
}



.mobile-close{ cursor:pointer; pointer-events:auto; position: relative; z-index: 2; }
.mobile-menu-panel{ will-change: transform; }
.mobile-menu-panel .acc-chevron{
  margin-left:auto;
  opacity:.85;
  font-size: 14px;
  transform: translateY(1px);
}
.mobile-accordion .accordion-toggle{
  display:flex;
  align-items:center;
  justify-content: space-between;
  width:100%;
  gap:12px;
}
.mobile-accordion .accordion-content a{
  display:block;
  padding: 10px 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.90);
}
.mobile-accordion .accordion-content a:hover{
  background: rgba(255,255,255,0.06);
}
@media (max-width: 820px){
  .mobile-menu-panel{ width: 100vw; max-width: none; }
  .mobile-menu-body{ padding: 18px 16px 26px; }
  .mobile-menu-header{ padding: 16px; }
}
@media (max-width: 420px){
  .mobile-nav > li > a{ padding: 12px 2px; }
  .mobile-menu-header img{ max-height: 30px; }
}





@media (min-width: 981px){
  .mobile-menu-overlay,
  .mobile-menu-panel{
    display: none !important;
  }
  .mobile-hamburger{
    display: none !important;
  }
}


@media (max-width: 980px){
  .mobile-hamburger{
    display: inline-flex;
  }
  
  .nav-links, .primary-nav, .desktop-nav{
    display: none !important;
  }
}



.omega-footer__grid{
  display:grid;
  grid-template-columns: 1.2fr .7fr .9fr;
  gap: 44px;
  padding-top: 56px;
  padding-bottom: 36px;
  align-items:start;
}
.omega-footer__logo{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 16px;
}
.omega-footer__logo img{ width: 44px; height: 44px; object-fit: contain; }
.omega-footer__brandtext .omega-footer__name{
  font-weight: 800;
  letter-spacing: .12em;
  font-size: 14px;
}
.omega-footer__brandtext .omega-footer__sub{
  opacity:.85;
  font-size: 13px;
  margin-top: 2px;
}
.omega-footer__about{
  max-width: 520px;
  opacity: .9;
  line-height: 1.65;
  margin: 0 0 18px;
}
.omega-footer__cta{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}
.omega-footer__pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  text-decoration:none;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 11px;
  transition: transform .18s ease, background .18s ease, opacity .18s ease;
}
.omega-footer__pill:hover{ transform: translateY(-1px); background: rgba(255,255,255,.09); }
.omega-footer__pill--primary{
  background: linear-gradient(135deg, #0a8dea, #5a2fba);
  border-color: rgba(255,255,255,.10);
  box-shadow: 0 18px 44px rgba(0,0,0,.45);
}
.omega-footer__loc{
  opacity: .7;
  letter-spacing: .18em;
  font-weight: 700;
  font-size: 11px;
  margin-top: 6px;
}
.omega-footer__links h4,
.omega-footer__contact h4{
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 14px;
  opacity: .92;
}
.omega-footer__links a{
  display:block;
  text-decoration:none;
  color: rgba(255,255,255,.86);
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.omega-footer__links a:first-of-type{ border-top: 0; }
.omega-footer__links a:hover{ color: rgba(255,255,255,1); }
.omega-footer__contact a{
  display:block;
  color: rgba(255,255,255,.9);
  text-decoration:none;
  padding: 6px 0;
}
.omega-footer__hours{ opacity:.75; margin-top: 10px; }
.omega-footer__social{ display:flex; gap: 10px; margin-top: 14px; }
.omega-header .omega-social{display:flex;align-items:center;gap:14px;justify-content:center;}
.omega-social:hover{ background: rgba(255,255,255,.10); }
.omega-footer__divider{
  height: 1px;
  background: rgba(255,255,255,.10);
  margin: 0;
}
.omega-footer__bottom{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0 22px;
  flex-wrap: wrap;
}
.omega-footer__copy{
  margin: 0;
  opacity: .8;
  font-size: 13px;
}
.omega-footer__legal{
  display:flex;
  gap: 18px;
  flex-wrap: wrap;
}
.omega-footer__legal a{
  color: rgba(255,255,255,.72);
  text-decoration:none;
  font-size: 13px;
}
.omega-footer__legal a:hover{ color: rgba(255,255,255,1); }


.site-footer .footer-inner{
  display:grid;
  grid-template-columns: 1.2fr .7fr .9fr;
  gap: 44px;
  padding: 56px 0 28px;
}
.site-footer .footer-logo{ display:flex; align-items:center; gap: 12px; margin-bottom: 16px; }
.site-footer .footer-logo img{ width:44px; height:44px; object-fit:contain; }
.site-footer .footer-name{ font-weight:800; letter-spacing:.12em; font-size:14px; }
.site-footer .footer-sub{ opacity:.85; font-size:13px; margin-top:2px; }
.site-footer .footer-about{ opacity:.9; line-height:1.65; margin:0 0 18px; max-width:520px; }
.site-footer .footer-cta{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:14px; }
.site-footer .footer-pill{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  text-decoration:none;
  font-weight:700; letter-spacing:.12em; text-transform:uppercase; font-size:11px;
  transition: transform .18s ease, background .18s ease;
}
.site-footer .footer-pill:hover{ transform: translateY(-1px); background: rgba(255,255,255,.09); }
.site-footer .footer-pill--primary{
  background: linear-gradient(135deg, #0a8dea, #5a2fba);
  border-color: rgba(255,255,255,.10);
  box-shadow: 0 18px 44px rgba(0,0,0,.45);
}
.site-footer .footer-loc{ opacity:.7; letter-spacing:.18em; font-weight:700; font-size:11px; margin-top:6px; }
.site-footer .footer-links h4, .site-footer .footer-contact h4{
  font-weight:800; letter-spacing:.14em; text-transform:uppercase; font-size:12px; margin:0 0 14px; opacity:.92;
}
.site-footer .footer-links a{
  display:block; text-decoration:none; color: rgba(255,255,255,.86);
  padding:8px 0; border-top:1px solid rgba(255,255,255,.06);
}
.site-footer .footer-links a:first-of-type{ border-top:0; }
.site-footer .footer-links a:hover{ color: rgba(255,255,255,1); }
.site-footer .footer-contact a{ display:block; color: rgba(255,255,255,.9); text-decoration:none; padding:6px 0; }
.site-footer .footer-hours{ opacity:.75; margin-top:10px; }
.site-footer .footer-social{ display:flex; gap:10px; margin-top:14px; }
.site-footer .social-dot{
  width:40px; height:40px; border-radius:999px;
  display:inline-flex; align-items:center; justify-content:center;
  border:1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.06);
  text-decoration:none;
}
.site-footer .social-dot:hover{ background: rgba(255,255,255,.10); }
.site-footer .footer-bottom{
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 16px 0 22px;
  display:flex; align-items:center; justify-content: space-between; gap:16px; flex-wrap:wrap;
}
.site-footer .footer-copy{ opacity:.8; font-size:13px; }
.site-footer .footer-legal{ display:flex; gap:18px; flex-wrap:wrap; }
.site-footer .footer-legal a{ color: rgba(255,255,255,.72); text-decoration:none; font-size:13px; }
.site-footer .footer-legal a:hover{ color: rgba(255,255,255,1); }

@media (max-width: 980px){
  .omega-footer__grid{ grid-template-columns: 1fr; gap: 26px; padding-top: 44px; }
  .site-footer .footer-inner{ grid-template-columns: 1fr; gap: 26px; padding-top: 44px; }
}



@media (max-width: 980px){
  .mobile-menu-header--center{
    display:flex;
    align-items:center;
    justify-content:center;
    position: relative;
    padding: 18px 16px 10px;
  }
  .mobile-menu-brand{
    display:flex;
    flex-direction: column;
    align-items:center;
    justify-content:center;
    gap: 6px;
    text-align:center;
  }
  .mobile-menu-brand img{
    width: min(280px, 78vw);
    height: auto;
    max-height: 78px;
    object-fit: contain;
    display:block;
  }
  .mobile-brand-sub{
    opacity: .85;
    font-size: 13px;
    margin-top: 0;
  }

  .mobile-brand-text{ line-height: 1.05; }
  .mobile-brand-name{
    font-weight: 800;
    letter-spacing: .14em;
    font-size: 14px;
  }
  .mobile-brand-sub{
    opacity: .85;
    font-size: 13px;
    margin-top: 4px;
  }
  #mobileClose.mobile-close{
    position:absolute;
    right: 14px;
    top: 14px;
  }

  
  .mobile-cta, a.mobile-cta{
    background: linear-gradient(135deg, #0a8dea, #5a2fba) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.10) !important;
    box-shadow: 0 18px 44px rgba(0,0,0,.45) !important;
    padding: 14px 16px !important;
    border-radius: 999px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    font-weight: 800 !important;
    letter-spacing: .14em !important;
    text-transform: uppercase !important;
    margin-top: 16px !important;
  }

  
  .mobile-social{
    display:flex;
    justify-content:center;
    gap: 12px;
    margin-top: 16px;
  }
  .mobile-social-btn{
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.92);
    text-decoration:none;
  }
  .mobile-social-btn svg{
    width: 20px;
    height: 20px;
    fill: currentColor;
  }
  .mobile-social-btn:hover{
    background: rgba(255,255,255,.10);
    transform: translateY(-1px);
  }
}





.omega-header{ padding-top: 18px; padding-bottom: 12px; }
.omega-top{ gap: 20px; align-items:center; }
.omega-actions{ gap: 16px; align-items:center; }
.header-icon{ width: 40px; height: 40px; }


.mobile-menu-overlay{ background: rgba(0,0,0,.55); backdrop-filter: blur(6px); }
@media (max-width: 980px){
  .omega-header{ padding-top: 16px; padding-bottom: 10px; }
  .omega-top{ gap: 16px; }
  .omega-actions{ gap: 14px; }

  .mobile-nav > li > a,
  .mobile-accordion .accordion-toggle{ padding: 14px 10px; }

  .mobile-accordion .accordion-toggle{ border-radius: 14px; }
  .mobile-accordion .accordion-content a{ border-radius: 12px; }

  .mobile-nav > li > a:hover,
  .mobile-accordion .accordion-toggle:hover{ background: rgba(255,255,255,.06); }

  .mobile-accordion .accordion-content a:focus{
    outline: 2px solid rgba(51,193,255,.55);
    outline-offset: 2px;
  }
}


@media (max-width: 980px){
  .omega-footer__grid,
  .site-footer .footer-inner{ padding-bottom: 28px; }
}


img{ height:auto; }


.header-icon[aria-label="Map"], .map-icon{ display:none !important; }


.omega-header .omega-social{display:flex;align-items:center;gap:14px;justify-content:center;}
.omega-header .omega-social a{
  text-decoration:none;
  color:#fff;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  padding:4px;
}
.omega-header .omega-social a i{
  width:46px;
  height:46px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,0.18);
  border:1px solid rgba(255,255,255,0.38);
  font-size:20px;
  transition:transform .18s ease, background .18s ease, border-color .18s ease;
}
.omega-social a .social-label{
  font-size:11px;
  letter-spacing:.02em;
  opacity:.92;
  line-height:1;
}
.omega-social a i,
.omega-social a svg{
  width: 18px !important;
  height: 18px !important;
  line-height: 1 !important;
  display: block !important;
}


@media (max-width: 980px){
  .site-header .omega-social,
  header .omega-social,
  .header-social,
  .top-social{ display:none !important; }
}


.omega-scrolllock{ overflow: hidden; }



.omega-googleApiReviews .gr-apiSub{
  text-align: center;
  margin: 10px auto 18px;
  max-width: 80ch;
  opacity: .9;
  line-height: 1.6;
}
.omega-googleApiReviews .gr-apiBar{
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  width: min(980px, 100%);
  margin: 0 auto 12px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}
.omega-googleApiReviews .gr-apiMeta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.omega-googleApiReviews .gr-gBadge{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  flex: 0 0 28px;
}
.omega-googleApiReviews .gr-apiMetaText{
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  opacity: .9;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.omega-googleApiReviews .gr-miniBtn{
  padding: 10px 14px;
  font-size: 11px;
  letter-spacing: .12em;
}

.omega-googleApiReviews .gr-apiWrap{
  width: min(980px, 100%);
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.38);
  box-shadow: 0 22px 60px rgba(0,0,0,.40);
  backdrop-filter: blur(10px);
}
.omega-googleApiReviews .gr-loading,
.omega-googleApiReviews .gr-error{
  padding: 18px 18px 16px;
  opacity: .88;
}
.omega-googleApiReviews .gr-list{
  max-height: 520px;
  overflow: auto;
  padding: 16px;
  display: grid;
  gap: 14px;
}


.omega-googleApiReviews .gr-card{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 14px 14px 12px;
}
.omega-googleApiReviews .gr-top{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.omega-googleApiReviews .gr-avatar{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  background: rgba(51,193,255,.14);
  border: 1px solid rgba(51,193,255,.35);
  flex: 0 0 40px;
  overflow: hidden;
}
.omega-googleApiReviews .gr-avatar img{
  width: 90%;
  height: auto;
  object-fit: cover;
  display: block;
}
.omega-googleApiReviews .gr-who{
  min-width: 0;
}
.omega-googleApiReviews .gr-name{
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.omega-googleApiReviews .gr-metaRow{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 3px;
  opacity: .88;
  font-size: 12px;
}
.omega-googleApiReviews .gr-stars{
  letter-spacing: 1px;
}
.omega-googleApiReviews .gr-time{
  opacity: .85;
}
.omega-googleApiReviews .gr-text{
  margin: 0;
  opacity: .92;
  line-height: 1.65;
}

.omega-googleApiReviews .gr-apiNote{
  text-align: center;
  margin: 12px auto 0;
  opacity: .72;
  font-size: 13px;
  max-width: 80ch;
}


@media (max-width: 980px){
  .omega-googleApiReviews .gr-apiBar{
    border-radius: 18px;
    flex-direction: column;
    align-items: flex-start;
  }
  .omega-googleApiReviews .gr-list{
    max-height: 64vh;
  }
}




@media (max-width: 768px){
  }





@media (max-width: 768px){
  }



.has-scroll-cue{ position: relative; overflow: visible; }

.section-scroll-cue{
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 7;
  pointer-events: none;
}

.scroll-cue{
  pointer-events: auto;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #0a8dea, #5a2fba);
  color: #fff;
  box-shadow: 0 12px 34px rgba(0,0,0,.35), inset 0 0 0 2px rgba(255,255,255,.14);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
  opacity: .95;
}

.scroll-cue:hover{
  transform: translateY(2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.28), inset 0 0 0 2px rgba(255,255,255,.20);
}
.scroll-cue:active{ transform: translateY(3px); }
.scroll-cue:focus-visible{
  outline: 2px solid rgba(255,255,255,.75);
  outline-offset: 4px;
}

.section-scroll-cue.is-last{ display: none; }

@media (max-width: 768px){
  .section-scroll-cue{ bottom: 16px; }
  .scroll-cue{ width: 44px; height: 44px; }
}




body.omega-menu-open .section-scroll-cue,
body.omega-menu-open .scroll-cue{
  display:none !important;
}


.mobile-menu-panel .mobile-menu-brand img{
  width: min(260px, 70vw);
  max-width: 260px;
  height: auto;
  display:block;
}


.mobile-menu-panel .mobile-menu-brand{
  gap: 0;
  padding: 10px 0 6px;
}


.mobile-menu-panel .mobile-brand-text{
  display:none !important;
}


.mobile-menu-panel .mobile-social{
  gap: 14px;
  margin-top: 10px;
}
.mobile-menu-panel .mobile-social-btn{
  width: 50px;
  height: 50px;
  border-radius: 999px;
}
.mobile-menu-panel .mobile-social-btn svg{
  width: 24px;
  height: 24px;
  display:block;
}





body.omega-menu-open .section-scroll-cue,
body.omega-menu-open .scroll-cue{
  display:none !important;
}


.mobile-menu-panel .section-scroll-cue,
.mobile-menu-panel .scroll-cue{
  display:none !important;
}


.mobile-menu-panel .mobile-menu-header--center{
  padding-top: 10px;
  padding-bottom: 8px;
}

.mobile-menu-panel .mobile-menu-brand{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap: 10px;
}

.mobile-menu-panel .mobile-menu-brand img{
  width: min(300px, 78vw);
  max-width: 300px;
  height: auto;
  display:block;
}


.mobile-menu-panel .mobile-brand-sub,
.mobile-menu-panel .mobile-brand-text,
.mobile-menu-panel .mobile-brand-subtitle{
  display:none !important;
}


.mobile-menu-panel .mobile-social{
  margin-top: 14px;
  gap: 16px;
}

.mobile-menu-panel .mobile-social-btn{
  width: 58px;
  height: 58px;
  border-radius: 999px;
}

.mobile-menu-panel .mobile-social-btn svg{
  width: 28px;
  height: 28px;
  display:block;
}




body.lock-scroll .section-scroll,
body.lock-scroll .hero-down,
body.lock-scroll .brands-down,
body.omega-menu-open .section-scroll,
body.omega-menu-open .hero-down,
body.omega-menu-open .brands-down{
  display: none !important;
}



#videoModal.modal-overlay{
  background: rgba(0,0,0,0.92);
  backdrop-filter: none;
}
.modal-video{
  background: #000;
}
.modal-video .modal-close{
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 30;
  pointer-events: auto;
}



@media (max-width: 520px){
  .premium-brands{
    padding: 48px 0 72px;           
    background-position: center top; 
  }
  .brands-title{
    padding-top: 0;                
    font-size: 24px;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
  }
  .brands-logos{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 12px;
    margin-top: 12px;
  }
  .brands-logos img{
    max-width: 170px;
    height: 42px;
    width: 90%;
    object-fit: contain;
  }
}


.premium-brands::before{ aspect-ratio: 16 / 7; } 
  .brands-title{ padding-top: 64px; font-size: 26px; letter-spacing: 0.12em; }
  .brands-logos{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 12px;
    margin-top: 14px;
  }
  .brands-logos img{
    max-width: 160px;
    max-height: 42px;
    width: 90%;
    height: auto;
  }
}



@media (max-width: 900px){
  .omega-contact-bottom-grid{
    grid-template-columns: 1.1fr 0.9fr;
    gap: 22px;
    align-items: start;
  }
  .omega-contact-map iframe{
    height: 240px;
  }
}
@media (max-width: 520px){
  .omega-contact-bottom-grid{
    grid-template-columns: 1.15fr 0.85fr;
    gap: 16px;
    align-items: start;
  }
  .omega-contact-map{
    min-height: 160px;
  }
  .omega-contact-map iframe{
    height: 160px;
    min-height: 160px;
  }
}

@media (max-width: 380px){
  .omega-contact-bottom-grid{
    grid-template-columns: 1fr;
  }
  .omega-contact-map iframe{
    height: 200px;
    min-height: 200px;
  }
}



@media (max-width: 560px){
  .omega-footer__heading{ text-align: center; }
  .omega-footer__list li,
  .omega-footer__links li{ text-align: center; }
  .omega-footer__list a,
  .omega-footer__links a{
    justify-content: center;
  }
  .omega-footer__contact li{
    justify-content: center;
    text-align: center;
  }
}





@media (max-width: 768px) {
  
  section.premium-brands#brands{
    overflow: visible;          
    min-height: unset;          

    padding-top: 44px;
    padding-bottom: 110px;      

    background-color: #ffffff;
    background-image: url("images/brands_bk.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 88%;
  }

  .brands-title{
    font-size: 34px;
    line-height: 1.18;
    letter-spacing: .22em;
    margin-bottom: 26px;
  }

  .brands-logos{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 18px;
    align-items: center;
    justify-items: center;
    margin-inline: auto;
    max-width: 520px;
  }

  .brands-logos .brand img{
    max-height: 48px;
    width: auto;
    object-fit: contain;
  }
}
.brands-logos{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 18px;
    align-items: center;
    justify-items: center;
    margin-inline: auto;
    max-width: 520px;
  }

  .brands-logos .brand img{
    max-height: 48px;
    width: auto;
    object-fit: contain;
  }
}





.premium-brands{
  display: flex;
  align-items: center;
}
.premium-brands .premium-brands-inner{
  width: min(1280px, 94%);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


.premium-brands .brands-down{
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
}



@media (max-width: 768px) {
  section#brands.premium-brands{
    min-height: unset;
    overflow: visible;
    padding: 46px 0 56px;

    background-image: url("./images/prem_brands.jpg") !important;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 88%;
    background-color: #fff; 
  }
}

  .premium-brands .premium-brands-inner{
    gap: 20px;
  }

  .brands-logos{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 16px;
    max-width: 520px;
  }

  .brands-logos .brand img{
    max-height: 50px;
    width: auto;
    object-fit: contain;
  }

  .premium-brands .brands-down{
    bottom: 16px;
  }

}


/* =========================================
   DESKTOP HEADER SOCIAL CROPPING FIX
   Ensures left social icons never sit on the viewport edge
   ========================================= */
@media (min-width: 981px){
  .omega-header > .container{
    padding-left: max(22px, env(safe-area-inset-left));
    padding-right: max(22px, env(safe-area-inset-right));
    box-sizing: border-box;
  }
  .omega-top{ overflow: visible; }
  .omega-social{display:flex;align-items:center;gap:14px;justify-content:center;}
  .omega-actions{ justify-self: end; }
}

/* Prevent any rare horizontal clipping from sticky transforms */
html, body{ overflow-x: hidden; }

/* =========================================
   HOTFIX: Desktop header social icons cropping
   Cause: .omega-social is also used in the footer and later rules
   were overriding the header container sizing.
   Fix: scope header and footer rules explicitly.
   ========================================= */

/* Header: ensure the social "container" behaves like a container */
@media (min-width: 981px){
  .omega-header .omega-social{display:flex;align-items:center;gap:14px;justify-content:center;}
  .omega-header .omega-social a{
  text-decoration:none;
  color:#fff;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  padding:4px;
}
.omega-header .omega-social a i{
  width:46px;
  height:46px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,0.18);
  border:1px solid rgba(255,255,255,0.38);
  font-size:20px;
  transition:transform .18s ease, background .18s ease, border-color .18s ease;
}
.omega-social a .social-label{
  font-size:11px;
  letter-spacing:.02em;
  opacity:.92;
  line-height:1;
}

  /* Keep the header content safely inside the viewport */
  .omega-header > .container{
    padding-left: max(28px, env(safe-area-inset-left));
    padding-right: max(28px, env(safe-area-inset-right));
  }
}

/* Footer: keep the circular social buttons style only for footer links */
.omega-footer__social a.omega-social{display:flex;align-items:center;gap:14px;justify-content:center;}

/* =========================================
   TUNE: Reduce excess header height on desktop (less empty space above hero)
   ========================================= */
@media (min-width: 981px){
  .omega-header{
    padding: 26px 0 30px;
  }
  .omega-header.is-compact{
    padding: 16px 0 10px;
  }
}


/* =========================================
   MOBILE FOOTER BALANCE (centered + rows)
   ========================================= */
@media (max-width: 980px){

  /* Center everything visually */
  .omega-footer{
    text-align: center;
  }

  .omega-footer__grid{
    justify-items: center;
    gap: 22px;
  }

  .omega-footer__brand,
  .omega-footer__links,
  .omega-footer__contact{
    width: 90%;
    max-width: 520px;
  }

  .omega-footer__logo{
    justify-content: center;
  }

  .omega-footer__about{
    margin-left: auto;
    margin-right: auto;
  }

  .omega-footer__cta{
    justify-content: center;
  }

  /* Quick links in 2 balanced columns */
  .omega-footer__links{
    text-align: center;
  }
  .omega-footer__links a{
    display: inline-flex;
    justify-content: center;
    width: 90%;
  }
  .omega-footer__links{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
  }
  .omega-footer__links h4{
    grid-column: 1 / -1;
    margin-bottom: 6px;
  }

  /* Contact block centered */
  .omega-footer__contact{
    text-align: center;
  }
  .omega-footer__contact a{
    display: inline-block;
  }

  /* Social icons centered row */
  .omega-footer__social{
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 14px;
  }
  .omega-footer__social .omega-social{display:flex;align-items:center;gap:14px;justify-content:center;}

  /* Bottom row stacks nicely */
  .omega-footer__bottom{
    display: grid;
    gap: 14px;
    justify-items: center;
    text-align: center;
    padding-top: 18px;
    padding-bottom: 22px;
  }
  .omega-footer__legal{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 16px;
  }
}

/* =========================================
   CONTACT MAP MOBILE TWO-COL + STACK SMALL
   ========================================= */
@media (max-width: 560px){
  .omega-contact-bottom-grid{
    grid-template-columns: 1.2fr 0.8fr;
    gap: 14px;
    align-items: start;
  }
  .omega-contact-details{ gap: 16px; }
  .omega-detail{ padding-left: 12px; }
  .omega-detail-text{ font-size: 15px; }
  .omega-contact-map{ min-height: 160px; }
  .omega-contact-map iframe{
    height: 160px;
    min-height: 160px;
  }
}

/* =========================================
   MOBILE HEADER LOGO SIZE (slightly smaller)
   ========================================= */
@media (max-width: 980px){
  .omega-logo-img{ width: 168px; }
}
@media (max-width: 420px){
  .omega-logo-img{ width: 156px; }
}

/* =========================================
   FOOTER SOCIAL ICON UPGRADE + CENTER TEXT
   ========================================= */
.omega-footer__social .omega-social{display:flex;align-items:center;gap:14px;justify-content:center;}
.omega-footer__social .omega-social i{
  font-size: 16px;
}
.omega-footer__social .omega-social:hover{
  transform: translateY(-2px);
  border-color: rgba(51,193,255,0.85);
  box-shadow: 0 14px 28px rgba(0,0,0,0.45);
  background: linear-gradient(180deg, rgba(51,193,255,0.18), rgba(255,255,255,0.04));
}

@media (max-width: 980px){
  .omega-footer__brand,
  .omega-footer__links,
  .omega-footer__contact{
    text-align: center;
  }
  .omega-footer__contact div,
  .omega-footer__contact a{
    margin-left: auto;
    margin-right: auto;
  }
}


/* ===== Desktop hero safety fixes (prevents mobile overrides from distorting desktop) ===== */
@media (min-width: 769px) {
  .omega-social a i { font-size: 16px; }
  .hero-actions { flex-wrap: nowrap; }
  .btn-primary, .btn-secondary { min-width: 180px; white-space: nowrap; }
  .btn-play { width: 54px; height: 54px; margin-left: 4px; }
  .btn-play .play-icon { width: 18px; height: 18px; }
}
/* Make hero videos behave consistently across browsers */
.hero-video-slide video {
  width: 90%;
  height: auto;
  object-fit: cover;
  object-position: center;
}


/* --- HERO: ensure desktop & mobile videos behave correctly --- */
.hero-video-mobile-slide { display: none; }

/* Desktop: keep pills stable */
@media (min-width: 769px) {
  .hero-actions { gap: 16px; flex-wrap: nowrap; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: auto;
    min-width: 210px;
  }
}

/* Mobile: use the dedicated mobile hero video only */
@media (max-width: 768px) {
  .hero-video-mobile-slide { display: block; }
  .hero-slide:not(.hero-video-mobile-slide) { display: none !important; }
  .hero-pagination { display: none !important; }
}


/* ===== HERO VIDEO (SINGLE SOURCE, NO SLIDER) ===== */
.omega-hero { background: #000; }
.omega-hero .hero-slider,
.omega-hero .hero-slide,
.omega-hero .hero-pagination,
.omega-hero .hero-dot { display: none !important; }

.hero-video-bg{
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  min-width: 100% !important;
  min-height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  z-index: 0;
  pointer-events: none;
  background: #000;
}

/* Hide native controls if a browser tries to show them */
.hero-video-bg::-webkit-media-controls{ display:none !important; }
.hero-video-bg::-webkit-media-controls-enclosure{ display:none !important; }
.hero-video-bg::-webkit-media-controls-panel{ display:none !important; }

/* Premium header contact (luxury / editorial) */
.header-contact{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  justify-content:center;
  gap:6px;
  line-height:1.1;
  padding:2px 0 2px 26px;
  margin-left:14px;
  border-left:1px solid rgba(255,255,255,0.18);
}

.header-contact .contact-label{
  font-size:11px;
  letter-spacing:2.2px;
  text-transform:uppercase;
  opacity:0.62;
}

.header-contact a{
  display:inline-flex;
  align-items:center;
  gap:0;
  text-decoration:none;
  color:rgba(255,255,255,0.92);
  position:relative;
}

.header-contact .contact-svg{ display:none; }

.contact-phone-text{
  font-size:16px;
  font-weight:500;
  letter-spacing:0.03em;
}

.contact-email-text{
  font-size:13px;
  font-weight:400;
  letter-spacing:0.02em;
  opacity:0.72;
}

.header-contact a::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-5px;
  height:1px;
  background:rgba(255,255,255,0.62);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .22s ease;
}

.header-contact a:hover::after{ transform:scaleX(1); }

@media (max-width: 980px){
  .header-contact{
    border-left:none;
    padding-left:0;
    margin-left:10px;
    gap:2px;
  }
  .header-contact .contact-label{ display:none; }
  .header-contact .contact-email{ display:none; }
  .contact-phone-text{ font-size:14px; letter-spacing:0.02em; }
}


/* ==== Desktop simplification: disable mega-menus on desktop only (keep mobile accordions) ==== */
@media (min-width: 992px){
  .omega-nav .dropdown .mega-menu,
  .omega-nav .dropdown .drop-menu{
    display:none !important;
    visibility:hidden !important;
    opacity:0 !important;
    pointer-events:none !important;
  }
  .omega-nav .dropdown:hover .mega-menu,
  .omega-nav .dropdown:hover .drop-menu{
    display:none !important;
  }
}





/* Refined Pricelist Modal Styling */
.pricelist-modal,
.modal-content {
    max-width: 480px;
    width: 88%;
    margin: 80px auto;
    border-radius: 20px;
    padding: 35px 40px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.28);
    backdrop-filter: blur(14px);
}

.modal-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

/* Center the entire form layout */
.modal-content form,
.pricelist-modal form {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Inputs full width but visually centered */
.modal-content input,
.modal-content select,
.modal-content textarea {
    width: 100%;
    max-width: 380px;
    margin-bottom: 16px;
}

/* Center submit button */
.modal-content button {
    align-self: center;
    padding: 12px 28px;
    border-radius: 30px;
}


/* Premium Vertical Spacing Update */
#pricelistModal .omega-pricelist-panel {
    max-height: 80vh;
    margin: 120px auto;
}

#pricelistModal {
    padding-top: 80px;
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    #pricelistModal .omega-pricelist-panel {
        margin: 80px auto;
        max-height: 85vh;
    }
}


/* =====================================================
   NAV: Hover underline only (gradient) + Active page text blue
   Fixes ::after conflict with dropdown caret by using ::before for underline.
   ===================================================== */

.omega-nav > ul > li > a{
  position: relative;
  display: inline-block;
  text-decoration: none !important;
  transition: color .25s ease;
}

/* underline (hover only) */
/* show underline on hover only */
/* ACTIVE: blue text only (no underline) */
/* prevent underline on CTA button */
.omega-nav .nav-cta-btn::before{ display:none !important; }

/* HOME: should not show underline unless hovered (already hover-only) */

/* Ensure non-dropdown links don't accidentally get caret content */
.omega-nav > ul > li:not(.dropdown) > a::after{
  content: none !important;
}


/* =========================================
   CENTERED NAV UNDERLINE (DESKTOP)
   ========================================= */
@media (min-width: 992px){

  .omega-nav > ul > li > a{
    position: relative;
  }

  }









/* =========================================
   NAV UNDERLINE — HOVER ONLY (DESKTOP)
   Underline shows ONLY when cursor is on the text link
   ========================================= */
@media (min-width: 992px){

  .omega-nav > ul > li > a{
    position: relative;
    display: inline-block;
    padding-bottom: 12px; /* room for underline below text */
    text-decoration: none !important;

    background-image: linear-gradient(90deg, #2bbcff, #7a5cff);
    background-repeat: no-repeat;
    background-position: 50% 100%;
    background-size: 0% 3px; /* hidden by default */
    transition: color .25s ease, background-size .25s ease;
  }

  /* Underline ONLY on hover (no persistent underline) */
  .omega-nav > ul > li > a:hover{
    background-size: 60% 3px;
  }

  /* Ensure active state does NOT force underline */
  /* Never underline the CTA button */
  .omega-nav .nav-cta-btn,
  .omega-nav .nav-cta-btn:hover{
    background-image: none !important;
    background-size: 0 !important;
  }

  /* Ensure no stray pseudo lines show */
  .omega-nav > ul > li > a::before,
  .omega-nav > ul > li > a::after,
  .omega-nav > ul > li::before,
  .omega-nav > ul > li::after{
    content: none !important;
    display: none !important;
  }
}



/* =========================================
   NAV ACTIVE STATE — TEXT TURNS BLUE (DESKTOP)
   No persistent underline, only blue text
   ========================================= */
@media (min-width: 992px){

  .omega-nav > ul > li > a.active{
    color: #2bbcff !important; /* brand blue */
    background-size: 0% 3px !important; /* ensure no underline stays */
  }

}

/* ===== PATCH: HERO FULL-BLEED + CONTENT OFFSET (2026-02-23) ===== */
.omega-hero{ width:100% !important; max-width:100% !important; margin:0 !important; }
.omega-hero > .hero-video-bg,
.omega-hero video.hero-video-bg{
  position:absolute !important;
  top:50% !important;
  left:50% !important;
  width:100% !important;
  height:100% !important;
  min-width:100% !important;
  min-height:100% !important;
  max-width:none !important;
  max-height:none !important;
  object-fit:cover !important;
  object-position:center !important;
  transform: translate(-50%, -50%) scale(1.06) !important;
  background:#000 !important;
}

/* Match overlay to video scaling so the gradient has no edge gaps */
.omega-hero .hero-overlay{
  position:absolute !important;
  top:50% !important;
  left:50% !important;
  width:100% !important;
  height:100% !important;
  transform: translate(-50%, -50%) scale(1.06) !important;
  transform-origin: center !important;
  z-index: 1 !important;
  pointer-events:none !important;
}

.omega-hero .hero-content{ padding-top: 80px !important; }
@media (max-width: 768px){
  .omega-hero .hero-content{ padding-top: 50px !important; }
}


.hero-slider { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom right;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at left,
    rgba(5,10,24,0.96) 0%,
    rgba(5,10,24,0.55) 40%,
    transparent 70%
  );
}

.hero-content {
  position: relative;
  z-index: 5;
  height: auto;
  display: flex;
  align-items: center;
}

.hero-left { max-width: 580px; }

.hero-heading {
  font-family: "Cinzel", serif;
  font-size: 34px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 14px;
}

.hero-subheading {
  font-size: 16px;
  letter-spacing: 0.18em;
  color: #e3ecff;
  line-height: 1.6;
  margin-bottom: 26px;
  max-width: 520px;
}


.hero-actions {
  display: flex;              
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}


.btn-primary,
.btn-secondary {
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease,
    color .25s ease;
display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  min-width: 180px;

}

.btn-primary {
  background: linear-gradient(135deg, #0a8dea, #5a2fba);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.55);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.75);
}

.btn-secondary {
  background: #2b72c6;
  color: #ffffff;
  box-shadow: 0 7px 18px rgba(0,0,0,0.55);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 11px 24px rgba(0,0,0,0.3);
}






@media (max-width: 768px) {
  .hero-actions {
    justify-content: center;
  }
}



.btn-play {
  width: 60px; height: 60px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.7);
  background: transparent;
  display: inline-flex; align-items: center; justify-content: center;
  position: relative;
  margin-left: 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn-play::before {
  content: "";
  position: absolute; inset: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.6);
  opacity: 0.65;
}
.play-icon { font-size: 18px; color: #fff; transform: translateX(2px); }
.btn-play:hover {
  border-color: #33c1ff;
  background: rgba(5,10,24,0.55);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 30px rgba(0,0,0,0.85);
}

.hero-pagination {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 6;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
  cursor: pointer;
  border: none;
  transition: all .25s ease;
}
.hero-dot.active {
  background: #33c1ff;
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(51,193,255,0.9);
}

.hero-down {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(51,193,255,0.95);
  font-size: 28px;
  z-index: 6;
  text-shadow: 0 10px 24px rgba(0,0,0,0.55);
}

.hero-slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-video-slide {
  pointer-events: none; 
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover; 
  object-position: center bottom; 
  background: transparent;
}









.omega-difference .omega-difference-inner{
  position: relative;
  padding: clamp(60px, 7vw, 110px) 0;
  overflow: hidden;

  /* Full-bleed background (kills left/right gaps even inside .container) */
  background-image: url("images/omega-difference-banner.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  /* keep content readable */
  padding-left: clamp(18px, 6vw, 120px);
  padding-right: clamp(18px, 6vw, 120px);
  height: auto;
}




.od-header { margin-bottom: 28px; }
.od-title {
  font-family: "Cinzel", serif;
  font-size: 28px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 8px;
  text-align: center;
}
.od-subtitle {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(224,235,255,0.95);
  text-align: center;
}


.od-items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px 16px;
  align-items: start;
  justify-items: center;
}
.od-item { display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 220px; }
.od-icon {
  width: 110px; height: 110px; border-radius: 999px;


  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;

  overflow: hidden;
}
.od-icon img { width: 82%; height: 82%; object-fit: contain; }
.od-item-text {
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f5f7ff;
}




.premium-brands{
  position: relative;
  
  padding: clamp(44px, 6vw, 72px) 0 clamp(58px, 8vw, 90px);
  background: #fff url("images/prem_brands_bk.jpg") center center / cover no-repeat;
  min-height: clamp(520px, 62vh, 760px);
  overflow: hidden;

  /* Full-bleed override (kills side gaps) */
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}


.premium-brands::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(1200px 360px at 50% 0%, rgba(255,255,255,0.92), rgba(255,255,255,0) 60%),
    radial-gradient(900px 320px at 50% 100%, rgba(0,0,0,0.07), rgba(0,0,0,0) 60%);
  opacity:.55;
}


.premium-brands .container{
  position: relative;
  display: block;
  padding-inline: clamp(18px, 6vw, 120px);
  z-index: 1;
}


.brands-title{
  font-family: "Cinzel", serif;
  font-size: clamp(22px, 5vw, 34px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  color: #5aa7df;
  margin: 0 0 14px;
}


.brands-logos{
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px 26px;
  align-items: center;
  justify-items: center;
  max-width: 960px;
}

.brands-logos .brand{
  width: 90%;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height: 54px;
}

.brands-logos img{
  width: 90%;
  max-width: 180px;
  height: 46px;
  object-fit: contain;
  display: block;
  opacity: 0.97;
  filter: contrast(1.02) saturate(1.02);
  transition: transform 0.25s ease, opacity 0.25s ease;
}



@media (hover:hover){
  .brands-logos img:hover{ transform: translateY(-2px); opacity: 1; }
}


@media (max-width: 980px){
  .brands-logos{ grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 720px; }
  .brands-logos img{ height: 40px; max-width: 160px; }
}

@media (max-width: 560px){
  .premium-brands .container{ padding-inline: 18px; }
  .brands-title{ font-size: 22px; line-height: 1.35; }
  .brands-logos{ grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 18px; }
  .brands-logos .brand{ min-height: 48px; }
  .brands-logos img{ height: 34px; max-width: 150px; }
  
  .premium-brands{ background-position: center 100%; background-size: 180% auto; min-height: 620px; }
}




.omega-path{
  position: relative;
  overflow: hidden;
   margin-top: 0 !important;
  isolation: isolate;
 

  
  background-image: url("./images/bk_flip-cards.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: #fff;
}

/* Full-bleed section override (kills any inherited page constraints) */
.omega-path{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}


.omega-path::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;

}


.omega-path-inner{
  position: relative;
  z-index: 1;
}


.omega-path::after{
  display:none !important; 
}

.omega-path-title {
  font-family: "Cinzel", serif;
  font-size: 34px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 0px;
  text-align: center;   
  padding: 80px 0px 0px 0px;
}

.omega-path-subtitle {
  font-size: 16px;
  letter-spacing: 0.18em;
  color: #e3ecff;
  line-height: 1.6;
  margin-bottom: 26px;
  max-width: 520px;
  text-align: center;   
  margin: 0 auto;       
  padding: 0px 0px 50px 0px;
}


.flip-grid {
  display: grid;
   grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 28px 32px;
}

.flip-card { 
  max-width: 250px;
  perspective: 1200px; 
  cursor: pointer; 
  outline: none; 
}

.flip-inner {
  position: relative;
  width: 90%;
  height: 340px;
  border-radius: 18px;
  transform-style: preserve-3d;
  transition: transform .7s cubic-bezier(.19,1,.22,1);
}
.flip-card.is-flipped .flip-inner { transform: rotateY(180deg); }

.flip-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}


.flip-front {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(0,0,0,0.25));
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}
.flip-img { flex: 1; background-size: cover; background-position: center; }
.flip-label {
  font-family: "Cinzel", serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 12px;
  text-align: center;
  background: rgba(5,10,24,0.85);
}
.flip-cta {
  margin: 12px auto 14px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.6);
  background: transparent;
  color: #ffffff;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all .25s ease;
}
.flip-cta:hover { background: #33c1ff; border-color: #33c1ff; color: #050b18; }


.flip-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, rgba(10,141,234,0.95), rgba(90,47,186,0.95));
  padding: 18px 18px 20px;
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 18px 40px rgba(0,0,0,0.3);
  justify-content: space-between;
}
.flip-back h3 {
  font-family: "Cinzel", serif;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.flip-back p {
  font-size: 12px;
  line-height: 1.55;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.95);
}
.flip-back ul { list-style: none; padding: 0; margin: 8px 0 12px; }
.flip-back ul li {
  font-size: 11px;
  letter-spacing: 0.08em;
  padding-left: 14px;
  position: relative;
  margin-bottom: 4px;
}
.flip-back ul li::before { content: "•"; position: absolute; left: 0; color: #33c1ff; }

.flip-close {
  align-self: center;
  margin-top: auto;
  padding: 7px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.7);
  background: transparent;
  color: #ffffff;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all .25s ease;
}
.flip-close:hover { background: rgba(255,255,255,0.15); }




@media (hover: hover) and (pointer: fine) {
  .flip-card:hover .flip-inner {
    transform: rotateY(180deg);
  }

}












.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(5,10,24,0.82);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  z-index: 5000;
  pointer-events: none;
}
.modal-overlay.open { opacity: 1; visibility: visible; pointer-events: auto; }

.modal {
  background: #050b18;
  border-radius: 16px;
  padding: 24px 24px 20px;
  width: 500px;
  height: 450px;
  
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  position: relative;

  background-image: url("./images/images/workbench_bk.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: #fff;
}






.modal.modal-video{
  width: min(960px, 90vw);
  height: min(540px, 70vh);
  padding: 14px;
}






.modal-close {
  position: absolute; top: 10px; right: 12px;
  width: 32px; height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.6);
  background: rgba(5, 10, 24, 0.733);
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
}

.modal-title {
  font-family: "Cinzel", serif;
  font-size: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-align: center;
  color: rgba(5, 10, 24, 0.733); 
}
.modal-intro { 
  font-size: 14px; 
  line-height: 1.6; 
  color: rgba(5, 10, 24, 0.733); 
  margin-bottom: 18px; 
text-align: center;
}

.modal-form .form-row { display: flex; flex-direction: column; gap: 4px; margin-bottom: 12px; }
.modal-form label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(5,10,24,0.95);
}
.modal-form input, .modal-form textarea {
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255, 255, 255, 0.95);
  color: rgba(5,10,24,0.95);
  padding: 10px 12px;
  font-size: 13px;
  outline: none;
}
.field-error { display:block; font-size:12px; margin-top:6px; color: rgba(255, 0, 0, 0.9); }
.is-invalid { box-shadow: 0 0 0 2px rgba(255,95,95,.7) !important; }

.form-status { margin-top: 12px; text-align: center; font-size: 13px; color: rgba(255,255,255,0.9); min-height: 18px; }

.modal-btn.is-loading { opacity: .85; }
.btn-spinner {
  display:none; width:16px; height:16px; margin-left:10px;
  border:2px solid rgba(255,255,255,.35);
  border-top-color: rgba(255,255,255,.95);
  border-radius:999px;
  vertical-align: middle;
  animation: spin .8s linear infinite;
}
.modal-btn.is-loading .btn-spinner { display:inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }





.video-wrapper{
  width: 90%;
  height: auto;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.video-wrapper video{
  width: 90%;
  height: auto;
  display: block;
  object-fit: contain;
  background: #000;
}






@media (max-width: 1100px) {
  .flip-grid { grid-template-columns: repeat(3, 1fr); }
  .brand-logos { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 992px) {
  .omega-header { padding: 20px 0 10px; }

  .omega-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
  }

  .omega-social{display:flex;align-items:center;gap:14px;justify-content:center;}
  .omega-logo { order: 1; }

  
  .omega-actions {
    order: 2;
    width: 90%;
    justify-content: center;
    gap: 22px;
    position: relative;
  }

  .omega-search { display: none !important; }

  .mobile-hamburger {
    display: inline-flex;
    position: absolute;
    top: -58px;
    right: 0;
  }

  .omega-nav { display: none; }

  .omega-hero { min-height: 520px; padding: 50px 0 70px; }
  .hero-heading { font-size: 28px; }
  .hero-subheading { font-size: 14px; }

  .brand-logos { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  
  .od-items { grid-template-columns: repeat(5, minmax(0,1fr)); gap: 10px 8px; }
  .od-icon { width: 56px; height: 56px; margin-bottom: 6px; }
  .od-item-text { font-size: 8px; letter-spacing: 0.10em; line-height: 1.35; }

  .od-title { font-size: 20px; }
  .od-subtitle { font-size: 11px; letter-spacing: 0.12em; }

  .flip-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .flip-inner { height: 300px; }

  .premium-title { font-size: 22px; letter-spacing: 0.12em; }
}

@media (max-width: 480px) {
  .omega-hero { height: auto; min-height: 540px; padding: 40px 20px 60px; }
  .hero-heading { font-size: 22px; letter-spacing: 0.18em; }
  .hero-subheading { font-size: 13px; letter-spacing: 0.16em; }
  .hero-pagination { justify-content: flex-start; left: 24px; transform: none; }
  .hero-down { left: 24px; transform: none; }
  .flip-inner { height: 280px; }
  .flip-label { font-size: 11px; }
}


.omega-testimonials{
  background:#fff;


  position: relative;
  padding: 90px 0 0;
  min-height: 520px;
  overflow: hidden;
  isolation: isolate;
  
}



.testimonials-title{
  text-align:center;
  font-family:"Cinzel", serif;
  font-weight: 600;
  font-size: clamp(24px, 3vw, 42px);
  letter-spacing: .14em;
  text-transform: uppercase;
  color:#6bb6ea; 
  margin-bottom: 22px;
}

.testimonials-stars{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-bottom: 28px;
}

.testimonials-stars span{
  font-size: 34px;
  line-height: 1;
  color:#2e7ac2;
}

.testimonial-slider{
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr 70px;
  align-items: center;
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}

.testimonial-card{
  text-align:center;
  padding: 10px 18px;
}

.t-quote{
  font-size: 22px;
  line-height: 1.6;
  letter-spacing: .18em;
  color:#0e0e10;
  max-width: 760px;
  margin: 0 auto 26px;
}

.t-person{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 18px;
  margin-top: 10px;
}

.t-avatar{
  width: 64px;
  height: 64px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 10px 26px rgba(0,0,0,.18);
}

.t-person-text{
  text-align:left;
  display:flex;
  flex-direction:column;
  gap: 4px;
  padding-left: 14px;
  border-left: 2px solid rgba(14,14,16,.45);
}

.t-name{
  font-size: 18px;
  letter-spacing: .10em;
  font-weight: 700;
  color:#0e0e10;
}

.t-role{
  font-size: 16px;
  letter-spacing: .12em;
  color: rgba(14,14,16,.75);
}

.t-nav{
  width: 54px;
  height: 54px;
  border: none;
  background: transparent;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  transition: transform .2s ease, background .2s ease;
}

.t-nav span{
  font-size: 62px;
  line-height: 1;
  color:#6bb6ea;
}

.t-nav:hover{
  background: rgba(107,182,234,.12);
  transform: translateY(-1px);
}

@media (max-width: 900px){
  .testimonial-slider{
    grid-template-columns: 50px 1fr 50px;
  }
  .t-quote{
    font-size: 18px;
    letter-spacing: .14em;
  }
  .t-nav span{ font-size: 54px; }
}

@media (max-width: 600px){
  .omega-testimonials{ padding: 54px 0 58px; }

  .testimonial-slider{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .t-nav{
    position:absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
  }

  .t-prev{ left: 6px; }
  .t-next{ right: 6px; }

  .t-nav span{ font-size: 48px; }

  .t-person-text{
    padding-left: 12px;
  }
  
}





.omega-contact{
  position: relative;
  padding: 90px 0 0;
  overflow: hidden;
  isolation: isolate;
  background: none !important;
}


.omega-contact::before{
  content:"";
  position:absolute;
  inset:0;
  background: url("images/contact_bk.jpg") center top / contain no-repeat;
  z-index:0;
  pointer-events:none;
}


.omega-contact::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.10);
  z-index:1;
  pointer-events:none;
}


.omega-contact .container{
  position: relative;
  z-index:2;
}


.omega-contact-top{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 60px);
  padding-bottom: 70px;
}


.omega-contact-media{
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.omega-contact-person{
  width: min(440px, 92%);
  height: auto;
  filter: drop-shadow(0 18px 45px rgba(0,0,0,0.35));
  transform: translateY(18px);
}


.omega-contact-card{
  justify-self: stretch;
  width: 90%;
  max-width: none;
  padding: clamp(28px, 3vw, 42px);
  border-radius: 28px;

  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 26px 70px rgba(0,0,0,0.40);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  margin-right: clamp(20px, 5vw, 80px);
}


.omega-contact-title{
  font-family: "Cinzel", serif;
  font-size: 30px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.95);
}

.omega-contact-subtitle{
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.92);
  margin-bottom: 28px;
}


.omega-contact-form{
  width: 90%;
}

.omega-form-row{
  display: grid;
  gap: 14px;
}

.omega-form-row.two{
  grid-template-columns: 1fr 1fr;
}

.omega-form-row.one{
  grid-template-columns: 1fr;
}

.omega-field label{
  display:block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.90);
  margin-bottom: 6px;
}

.omega-field input,
.omega-field textarea{
  width: 90%;
  box-sizing: border-box;
  padding: 14px 18px;
  margin-bottom: 14px;

  border: none;
  border-radius: 18px;

  background: rgba(255,255,255,0.95);
  color: #0b1632;
  font-size: 14px;
  outline: none;

  box-shadow: inset 0 0 0 1px rgba(10,30,80,0.10);
}

.omega-field textarea{
  min-height: 170px;
  resize: vertical;
}


.omega-field input:focus,
.omega-field textarea:focus{
  box-shadow:
    inset 0 0 0 2px rgba(78,156,255,0.55),
    0 0 0 7px rgba(78,156,255,0.14);
}


.omega-contact-btn{
  margin-top: 14px;
  width: 90%;
  padding: 16px 0;

  border: none;
  border-radius: 20px;
  cursor: pointer;

  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;

  background: rgba(78,156,255,0.50);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.omega-contact-btn:hover{
  transform: translateY(-2px);
  background: rgba(78,156,255,0.60);
  box-shadow: 0 20px 44px rgba(0,0,0,0.55);
}


.omega-contact-bottom{
  position: relative;
  background: #1b4f8f;
  padding: 40px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.12);
}


.omega-contact-bottom::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    to bottom,
    rgba(5,20,60,0.15) 0%,
    rgba(5,20,60,0.55) 100%
  );
  z-index:0;
  pointer-events:none;
}


.omega-contact-bottom::after{
  content:"";
  position:absolute;
  inset:0;
  background-image: radial-gradient(rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.22;
  z-index:1;
  pointer-events:none;
}

.omega-contact-bottom .container{
  position: relative;
  z-index:2;
}

.omega-contact-bottom-grid{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
}


.omega-contact-details{
  display: grid;
  gap: 22px;
}

.omega-detail{
  padding-left: 14px;
  border-left: 2px solid rgba(255,255,255,0.20);
}

.omega-detail-title{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  margin-bottom: 8px;
}

.omega-detail-text{
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
}


.omega-contact-map{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  min-height: 280px;
}

.omega-contact-map iframe{
  width: 90%;
  height: auto;
  min-height: 280px;
  border: 0;
  display: block;
}


@media (max-width: 1100px){
  .omega-contact-card{
    margin-right: 0;
    max-width: 760px;
    justify-self: end;
  }
}

@media (max-width: 900px){
  .omega-contact-top{
    grid-template-columns: 1fr;
    padding-bottom: 40px;
  }

  .omega-contact-media{
    min-height: 280px;
    justify-content: center;
  }

  .omega-contact-person{
    width: min(360px, 88%);
    transform: translateY(10px);
  }

  .omega-contact-card{
    max-width: 760px;
    justify-self: center;
  }

  .omega-contact-bottom-grid{
    grid-template-columns: 1fr 0.88fr;
    gap: 16px;
    align-items: stretch;
  }

  .omega-contact-map{ min-height: 200px; }
  .omega-contact-map iframe{ min-height: 200px; }
}
}

@media (max-width: 600px){
  .omega-contact{
    padding: 60px 0 0;
  }

  .omega-contact-title{
    font-size: 24px;
    letter-spacing: 0.18em;
  }

  .omega-contact-card{
    padding: 22px;
    border-radius: 22px;
  }

  .omega-form-row.two{
    grid-template-columns: 1fr;
  }

  .omega-contact-map{
    min-height: 240px;
  }

  .omega-contact-map iframe{
    min-height: 240px;
  }
}



.omega-form__status{margin-top:10px;font-size:13px;letter-spacing:.08em;text-align:center;color:rgba(255,255,255,.92);min-height:18px;}



.omega-footer{
  position: relative;
  color: rgba(255,255,255,0.92);
  background: #1e2328; 
  color: rgba(255,255,255,0.85);
  border-top: 1px solid rgba(255,255,255,0.10);
  overflow: hidden;
}


.omega-footer::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.10;
  pointer-events:none;
}


.omega-footer__top{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 56px;
  padding: 90px 0 60px;
}


.omega-footer__logo{
  max-width: 210px;
  margin-bottom: 22px;
}

.omega-footer__desc{
  font-size: 15px;
  line-height: 1.75;
  max-width: 460px;
  margin: 0 0 18px;
  color: rgba(255,255,255,0.95);
}

.omega-footer__meta{
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
}


.omega-footer__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.omega-footer__chip{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.omega-footer__chip:hover{
  transform: translateY(-1px);
  background: rgba(78,156,255,0.28);
  border-color: rgba(78,156,255,0.42);
}


.omega-footer__heading{
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 22px;
  color: rgba(255,255,255,0.98);
}


.omega-footer__list,
.omega-footer__links{
  list-style: none;
  padding: 0;
  margin: 0;
}

.omega-footer__list li{
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.84);
}


.omega-footer__links li{ margin-bottom: 12px; }

.omega-footer__links a{
  color: rgba(255,255,255,0.86);
  text-decoration: none;
  position: relative;
}

.omega-footer__links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-3px;
  width:100%;
  height:1px;
  background: rgba(78,156,255,0.65);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.omega-footer__links a:hover::after{
  transform: scaleX(1);
  transform-origin: left;
}


.omega-footer__addr{
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 16px;
  color: rgba(255,255,255,0.88);
}

.omega-footer__contactlines{
  margin: 0 0 12px;
  line-height: 1.7;
}

.omega-footer__contactlines a{
  color: rgba(255,255,255,0.95);
  text-decoration: none;
}
.omega-footer__contactlines a:hover{ text-decoration: underline; }

.omega-footer__hours{
  margin: 0;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.68);
}


.omega-footer__divider{
  position: relative;
  z-index: 1;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.18),
    transparent
  );
}


.omega-footer__bottom{
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0 28px;
  color: rgba(255,255,255,0.70);
  font-size: 12.5px;
}

.omega-footer__copy{ margin: 0; }

.omega-footer__legal{
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.omega-footer__legal a{
  color: rgba(255,255,255,0.70);
  text-decoration: none;
}
.omega-footer__legal a:hover{ color: #ffffff; }


@media (max-width: 900px){
  .omega-footer__top{
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    padding: 70px 0 50px;
  }

  .omega-footer__bottom{
    flex-direction: column;
    text-align: center;
  }

  .omega-footer__legal{
    justify-content: center;
  }
}

@media (max-width: 560px){
  .omega-footer__top{
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .omega-footer__actions{
    justify-content: center;
  }

  .omega-footer__logo{
    margin-inline: auto;
    display: block;
  }

  .omega-footer__desc{
    text-align: center;
    margin-inline: auto;
  }

  .omega-footer__meta{
    text-align: center;
  }
}



.omega-contact-form select{
  width:100%;
  height:52px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.92);
  color: #0b1020;
  font-size: 15px;
  outline: none;
}
.omega-contact-form select:focus{
  box-shadow: 0 0 0 4px rgba(51,193,255,.20);
  border-color: rgba(51,193,255,.55);
}

.omega-wetransfer{
  margin-top: 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
}
.omega-wetransfer-card{
  flex: 1 1 auto;
  display:flex;
  align-items:center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 44px rgba(0,0,0,.35);
}
.omega-wetransfer-logo{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  object-fit: contain;
  padding: 6px;
}
.omega-wetransfer-kicker{
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.70);
  margin-bottom: 4px;
}
.omega-wetransfer-copy{
  color: rgba(255,255,255,.92);
  font-weight: 700;
  line-height: 1.25;
}
.omega-wetransfer-copy a{ color: rgba(255,255,255,.98); text-decoration: underline; text-underline-offset: 3px; }
.omega-wetransfer-muted{
  display:block;
  margin-top: 4px;
  font-weight: 600;
  color: rgba(255,255,255,.78);
}

.omega-wetransfer-btn{
  flex: 0 0 auto;
  border: 0;
  cursor:pointer;
  border-radius: 999px;
  padding: 14px 18px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color:#fff;
  background: linear-gradient(135deg, rgba(10,141,234,1), rgba(90,47,186,1));
  box-shadow: 0 18px 44px rgba(0,0,0,.45);
  line-height: 1;
}
.omega-wetransfer-btn:hover{ transform: translateY(-1px); }
.omega-wetransfer-btn:active{ transform: translateY(0); }

@media (max-width: 900px){
  .omega-wetransfer{
    flex-direction: column;
    align-items: stretch;
  }
  .omega-wetransfer-btn{
    width:100%;
    padding: 14px 16px;
  }
}


.omega-modal{ position: fixed; inset: 0; display:none; z-index: 9999; }
.omega-modal[aria-hidden="false"]{ display:block; }
.omega-modal-backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
}
.omega-modal-panel{
  position: relative;
  width: min(860px, 92vw);
  margin: 6vh auto 0;
  padding: 22px 22px 18px;
  border-radius: 22px;
  background: rgba(10,12,28,.92);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 90px rgba(0,0,0,.65);
  color: rgba(255,255,255,.92);
}
.omega-modal-close{
  position:absolute; top: 12px; right: 12px;
  width: 38px; height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  cursor:pointer;
}
.omega-modal-title{
  margin: 6px 0 6px;
  font-size: 28px;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.omega-modal-sub{
  margin: 0 0 14px;
  color: rgba(255,255,255,.78);
}
.omega-modal-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.omega-modal-card{
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  padding: 14px 14px 12px;
}
.omega-modal-card-title{
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 8px;
}
.omega-modal-list{ margin: 0; padding-left: 18px; color: rgba(255,255,255,.86); }
.omega-modal-list li{ margin: 6px 0; }
.omega-modal-actions{
  display:flex;
  justify-content:flex-end;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.omega-modal-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color:#fff;
  background: linear-gradient(135deg, rgba(10,141,234,1), rgba(90,47,186,1));
  text-decoration:none;
  line-height:1;
}
.omega-modal-ghost{
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.92);
  cursor:pointer;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height:1;
}
@media (max-width: 720px){
  .omega-modal-panel{ margin-top: 4vh; padding: 18px 16px 14px; }
  .omega-modal-grid{ grid-template-columns: 1fr; }
}

.no-scroll{ overflow:hidden; }



.mega-menu{
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}
.mega-menu::-webkit-scrollbar{ width: 10px; }
.mega-menu::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.18);
  border-radius: 999px;
  border: 2px solid rgba(6,10,27,.92);
}
.mega-menu::-webkit-scrollbar-track{ background: transparent; }

.mega-col h4{
  margin: 0 0 10px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mega-col a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease;
}
.mega-col a:hover,
.mega-col a:focus-visible{
  transform: translateY(-1px);
}

.mega-right{ padding-left: 4px; }
.mega-right .promo-img{
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.10);
}
.promo-caption{
  line-height: 1.5;
  color: rgba(255,255,255,.78);
}
.mega-menu::before{
  top: -9px;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.35));
}


.omega-hero{ position: relative; }
.omega-hero::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height: min(180px, 20vh);
  background: linear-gradient(to bottom, rgba(5,11,24,0), rgba(5,11,24,1));
  pointer-events:none;
  z-index: 1;
}
.hero-down{
  animation: omega-bounce 1.8s ease-in-out infinite;
}
@keyframes omega-bounce{
  0%,100%{ transform: translateY(0); opacity:.85; }
  50%{ transform: translateY(8px); opacity:1; }
}
@media (max-width: 520px){
  .hero-down{ animation: none; }
}





section{ position: relative; }

.section-scroll{
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 9999;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;

  background: linear-gradient(135deg, rgba(10,141,234,1), rgba(90,47,186,1));
  border: 1px solid rgba(255,255,255,.22);
  text-decoration: none;

  box-shadow:
    0 18px 44px rgba(0,0,0,.55),
    0 0 0 8px rgba(51,193,255,.18),
    inset 0 0 0 1px rgba(0,0,0,.18);

  backdrop-filter: blur(8px) saturate(1.2);
  cursor: pointer;
  pointer-events: auto;
  animation: sectionArrowFloat 1.6s ease-in-out infinite;
}

.section-scroll:hover{
  transform: translateX(-50%) translateY(-2px);
  box-shadow:
    0 22px 54px rgba(0,0,0,.62),
    0 0 0 10px rgba(139,88,255,.18),
    inset 0 0 0 1px rgba(255,255,255,.12);
}

.section-scroll svg{
  width: 24px;
  height: 24px;
  stroke: #fff;
  stroke-width: 2.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.35));
}

@keyframes sectionArrowFloat{
  0%,100%{ transform: translateX(-50%) translateY(0); opacity: .95; }
  50%{ transform: translateX(-50%) translateY(10px); opacity: 1; }
}



.mobile-nav-accordion{ list-style: none; margin: 0; padding: 0; }
.mobile-nav-accordion .mobile-accordion{ margin-top: 10px; }




.mobile-menu-panel{
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg,#0a2a52,#4b2b73);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform .4s ease;
  display: flex;
  flex-direction: column;
}
.mobile-menu-panel.active{ transform: translateX(0); }

.mobile-menu-header{
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.mobile-logo{
  color:#fff;
  text-decoration:none;
  font-weight:800;
  letter-spacing:.1em;
}
.mobile-logo span{ font-weight:300; font-style:italic; }

.mobile-close{
  position:absolute;
  top:20px;
  right:20px;
  width:44px;
  height:44px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.4);
  background:none;
  color:#fff;
  font-size:22px;
}

.mobile-menu-body{
  padding:20px;
  overflow-y:auto;
}

.mobile-nav{
  list-style:none;
  padding:0;
  margin:0;
}
.mobile-nav > li > a,
.accordion-toggle{
  width:100%;
  display:block;
  padding:14px 16px;
  border-radius:999px;
  background:rgba(0,0,0,.35);
  color:#fff;
  text-decoration:none;
  font-weight:700;
  letter-spacing:.12em;
  text-align:left;
}

.mobile-accordion{ margin-top:12px; }
.accordion-panel{
  display:none;
  padding-left:14px;
}
.mobile-accordion.open .accordion-panel{ display:block; }

.accordion-panel a{
  display:block;
  padding:10px 0;
  color:rgba(255,255,255,.85);
  text-decoration:none;
}

.mobile-cta{
  margin:30px auto 10px;
  display:block;
  text-align:center;
  padding:14px 30px;
  border-radius:999px;
  background:linear-gradient(135deg,#0a8dea,#5a2fba);
  color:#fff;
  font-weight:800;
  text-decoration:none;
}

.mobile-socials{
  display:flex;
  justify-content:center;
  gap:20px;
  margin-top:20px;
}
.mobile-socials a{
  width:42px;height:42px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.4);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  text-decoration:none;
}



.mobile-close{ cursor:pointer; pointer-events:auto; position: relative; z-index: 2; }
.mobile-menu-panel{ will-change: transform; }
.mobile-menu-panel .acc-chevron{
  margin-left:auto;
  opacity:.85;
  font-size: 14px;
  transform: translateY(1px);
}
.mobile-accordion .accordion-toggle{
  display:flex;
  align-items:center;
  justify-content: space-between;
  width:100%;
  gap:12px;
}
.mobile-accordion .accordion-content a{
  display:block;
  padding: 10px 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.90);
}
.mobile-accordion .accordion-content a:hover{
  background: rgba(255,255,255,0.06);
}
@media (max-width: 820px){
  .mobile-menu-panel{ width: 100vw; max-width: none; }
  .mobile-menu-body{ padding: 18px 16px 26px; }
  .mobile-menu-header{ padding: 16px; }
}
@media (max-width: 420px){
  .mobile-nav > li > a{ padding: 12px 2px; }
  .mobile-menu-header img{ max-height: 30px; }
}





@media (min-width: 981px){
  .mobile-menu-overlay,
  .mobile-menu-panel{
    display: none !important;
  }
  .mobile-hamburger{
    display: none !important;
  }
}


@media (max-width: 980px){
  .mobile-hamburger{
    display: inline-flex;
  }
  
  .nav-links, .primary-nav, .desktop-nav{
    display: none !important;
  }
}



.omega-footer__grid{
  display:grid;
  grid-template-columns: 1.2fr .7fr .9fr;
  gap: 44px;
  padding-top: 56px;
  padding-bottom: 36px;
  align-items:start;
}
.omega-footer__logo{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 16px;
}
.omega-footer__logo img{ width: 44px; height: 44px; object-fit: contain; }
.omega-footer__brandtext .omega-footer__name{
  font-weight: 800;
  letter-spacing: .12em;
  font-size: 14px;
}
.omega-footer__brandtext .omega-footer__sub{
  opacity:.85;
  font-size: 13px;
  margin-top: 2px;
}
.omega-footer__about{
  max-width: 520px;
  opacity: .9;
  line-height: 1.65;
  margin: 0 0 18px;
}
.omega-footer__cta{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}
.omega-footer__pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  text-decoration:none;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 11px;
  transition: transform .18s ease, background .18s ease, opacity .18s ease;
}
.omega-footer__pill:hover{ transform: translateY(-1px); background: rgba(255,255,255,.09); }
.omega-footer__pill--primary{
  background: linear-gradient(135deg, #0a8dea, #5a2fba);
  border-color: rgba(255,255,255,.10);
  box-shadow: 0 18px 44px rgba(0,0,0,.45);
}
.omega-footer__loc{
  opacity: .7;
  letter-spacing: .18em;
  font-weight: 700;
  font-size: 11px;
  margin-top: 6px;
}
.omega-footer__links h4,
.omega-footer__contact h4{
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 14px;
  opacity: .92;
}
.omega-footer__links a{
  display:block;
  text-decoration:none;
  color: rgba(255,255,255,.86);
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.omega-footer__links a:first-of-type{ border-top: 0; }
.omega-footer__links a:hover{ color: rgba(255,255,255,1); }
.omega-footer__contact a{
  display:block;
  color: rgba(255,255,255,.9);
  text-decoration:none;
  padding: 6px 0;
}
.omega-footer__hours{ opacity:.75; margin-top: 10px; }
.omega-footer__social{ display:flex; gap: 10px; margin-top: 14px; }
.omega-social{display:flex;align-items:center;gap:14px;justify-content:center;}
.omega-social:hover{ background: rgba(255,255,255,.10); }
.omega-footer__divider{
  height: 1px;
  background: rgba(255,255,255,.10);
  margin: 0;
}
.omega-footer__bottom{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0 22px;
  flex-wrap: wrap;
}
.omega-footer__copy{
  margin: 0;
  opacity: .8;
  font-size: 13px;
}
.omega-footer__legal{
  display:flex;
  gap: 18px;
  flex-wrap: wrap;
}
.omega-footer__legal a{
  color: rgba(255,255,255,.72);
  text-decoration:none;
  font-size: 13px;
}
.omega-footer__legal a:hover{ color: rgba(255,255,255,1); }


.site-footer .footer-inner{
  display:grid;
  grid-template-columns: 1.2fr .7fr .9fr;
  gap: 44px;
  padding: 56px 0 28px;
}
.site-footer .footer-logo{ display:flex; align-items:center; gap: 12px; margin-bottom: 16px; }
.site-footer .footer-logo img{ width:44px; height:44px; object-fit:contain; }
.site-footer .footer-name{ font-weight:800; letter-spacing:.12em; font-size:14px; }
.site-footer .footer-sub{ opacity:.85; font-size:13px; margin-top:2px; }
.site-footer .footer-about{ opacity:.9; line-height:1.65; margin:0 0 18px; max-width:520px; }
.site-footer .footer-cta{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:14px; }
.site-footer .footer-pill{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  text-decoration:none;
  font-weight:700; letter-spacing:.12em; text-transform:uppercase; font-size:11px;
  transition: transform .18s ease, background .18s ease;
}
.site-footer .footer-pill:hover{ transform: translateY(-1px); background: rgba(255,255,255,.09); }
.site-footer .footer-pill--primary{
  background: linear-gradient(135deg, #0a8dea, #5a2fba);
  border-color: rgba(255,255,255,.10);
  box-shadow: 0 18px 44px rgba(0,0,0,.45);
}
.site-footer .footer-loc{ opacity:.7; letter-spacing:.18em; font-weight:700; font-size:11px; margin-top:6px; }
.site-footer .footer-links h4, .site-footer .footer-contact h4{
  font-weight:800; letter-spacing:.14em; text-transform:uppercase; font-size:12px; margin:0 0 14px; opacity:.92;
}
.site-footer .footer-links a{
  display:block; text-decoration:none; color: rgba(255,255,255,.86);
  padding:8px 0; border-top:1px solid rgba(255,255,255,.06);
}
.site-footer .footer-links a:first-of-type{ border-top:0; }
.site-footer .footer-links a:hover{ color: rgba(255,255,255,1); }
.site-footer .footer-contact a{ display:block; color: rgba(255,255,255,.9); text-decoration:none; padding:6px 0; }
.site-footer .footer-hours{ opacity:.75; margin-top:10px; }
.site-footer .footer-social{ display:flex; gap:10px; margin-top:14px; }
.site-footer .social-dot{
  width:40px; height:40px; border-radius:999px;
  display:inline-flex; align-items:center; justify-content:center;
  border:1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.06);
  text-decoration:none;
}
.site-footer .social-dot:hover{ background: rgba(255,255,255,.10); }
.site-footer .footer-bottom{
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 16px 0 22px;
  display:flex; align-items:center; justify-content: space-between; gap:16px; flex-wrap:wrap;
}
.site-footer .footer-copy{ opacity:.8; font-size:13px; }
.site-footer .footer-legal{ display:flex; gap:18px; flex-wrap:wrap; }
.site-footer .footer-legal a{ color: rgba(255,255,255,.72); text-decoration:none; font-size:13px; }
.site-footer .footer-legal a:hover{ color: rgba(255,255,255,1); }

@media (max-width: 980px){
  .omega-footer__grid{ grid-template-columns: 1fr; gap: 26px; padding-top: 44px; }
  .site-footer .footer-inner{ grid-template-columns: 1fr; gap: 26px; padding-top: 44px; }
}



@media (max-width: 980px){
  .mobile-menu-header--center{
    display:flex;
    align-items:center;
    justify-content:center;
    position: relative;
    padding: 18px 16px 10px;
  }
  .mobile-menu-brand{
    display:flex;
    flex-direction: column;
    align-items:center;
    justify-content:center;
    gap: 6px;
    text-align:center;
  }
  .mobile-menu-brand img{
    width: min(280px, 78vw);
    height: auto;
    max-height: 78px;
    object-fit: contain;
    display:block;
  }
  .mobile-brand-sub{
    opacity: .85;
    font-size: 13px;
    margin-top: 0;
  }

  .mobile-brand-text{ line-height: 1.05; }
  .mobile-brand-name{
    font-weight: 800;
    letter-spacing: .14em;
    font-size: 14px;
  }
  .mobile-brand-sub{
    opacity: .85;
    font-size: 13px;
    margin-top: 4px;
  }
  #mobileClose.mobile-close{
    position:absolute;
    right: 14px;
    top: 14px;
  }

  
  .mobile-cta, a.mobile-cta{
    background: linear-gradient(135deg, #0a8dea, #5a2fba) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.10) !important;
    box-shadow: 0 18px 44px rgba(0,0,0,.45) !important;
    padding: 14px 16px !important;
    border-radius: 999px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    font-weight: 800 !important;
    letter-spacing: .14em !important;
    text-transform: uppercase !important;
    margin-top: 16px !important;
  }

  
  .mobile-social{
    display:flex;
    justify-content:center;
    gap: 12px;
    margin-top: 16px;
  }
  .mobile-social-btn{
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.92);
    text-decoration:none;
  }
  .mobile-social-btn svg{
    width: 20px;
    height: 20px;
    fill: currentColor;
  }
  .mobile-social-btn:hover{
    background: rgba(255,255,255,.10);
    transform: translateY(-1px);
  }
}





.omega-header{ padding-top: 18px; padding-bottom: 12px; }
.omega-top{ gap: 20px; align-items:center; }
.omega-actions{ gap: 16px; align-items:center; }
.header-icon{ width: 40px; height: 40px; }


.mobile-menu-overlay{ background: rgba(0,0,0,.55); backdrop-filter: blur(6px); }
@media (max-width: 980px){
  .omega-header{ padding-top: 16px; padding-bottom: 10px; }
  .omega-top{ gap: 16px; }
  .omega-actions{ gap: 14px; }

  .mobile-nav > li > a,
  .mobile-accordion .accordion-toggle{ padding: 14px 10px; }

  .mobile-accordion .accordion-toggle{ border-radius: 14px; }
  .mobile-accordion .accordion-content a{ border-radius: 12px; }

  .mobile-nav > li > a:hover,
  .mobile-accordion .accordion-toggle:hover{ background: rgba(255,255,255,.06); }

  .mobile-accordion .accordion-content a:focus{
    outline: 2px solid rgba(51,193,255,.55);
    outline-offset: 2px;
  }
}


@media (max-width: 980px){
  .omega-footer__grid,
  .site-footer .footer-inner{ padding-bottom: 28px; }
}


img{ height:auto; }


.header-icon[aria-label="Map"], .map-icon{ display:none !important; }


.omega-social{display:flex;align-items:center;gap:14px;justify-content:center;}
.omega-social a{
  text-decoration:none;
  color:#fff;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  padding:4px;
}
.omega-social a i{
  width:46px;
  height:46px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,0.18);
  border:1px solid rgba(255,255,255,0.38);
  font-size:20px;
  transition:transform .18s ease, background .18s ease, border-color .18s ease;
}
.omega-social a .social-label{
  font-size:11px;
  letter-spacing:.02em;
  opacity:.92;
  line-height:1;
}
.omega-social a i,
.omega-social a svg{
  width: 18px !important;
  height: 18px !important;
  line-height: 1 !important;
  display: block !important;
}


@media (max-width: 980px){
  .site-header .omega-social,
  header .omega-social,
  .header-social,
  .top-social{ display:none !important; }
}


.omega-scrolllock{ overflow: hidden; }



.omega-googleApiReviews .gr-apiSub{
  text-align: center;
  margin: 10px auto 18px;
  max-width: 80ch;
  opacity: .9;
  line-height: 1.6;
}
.omega-googleApiReviews .gr-apiBar{
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  width: min(980px, 100%);
  margin: 0 auto 12px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}
.omega-googleApiReviews .gr-apiMeta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.omega-googleApiReviews .gr-gBadge{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  flex: 0 0 28px;
}
.omega-googleApiReviews .gr-apiMetaText{
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  opacity: .9;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.omega-googleApiReviews .gr-miniBtn{
  padding: 10px 14px;
  font-size: 11px;
  letter-spacing: .12em;
}

.omega-googleApiReviews .gr-apiWrap{
  width: min(980px, 100%);
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.38);
  box-shadow: 0 22px 60px rgba(0,0,0,.40);
  backdrop-filter: blur(10px);
}
.omega-googleApiReviews .gr-loading,
.omega-googleApiReviews .gr-error{
  padding: 18px 18px 16px;
  opacity: .88;
}
.omega-googleApiReviews .gr-list{
  max-height: 520px;
  overflow: auto;
  padding: 16px;
  display: grid;
  gap: 14px;
}


.omega-googleApiReviews .gr-card{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 14px 14px 12px;
}
.omega-googleApiReviews .gr-top{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.omega-googleApiReviews .gr-avatar{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  background: rgba(51,193,255,.14);
  border: 1px solid rgba(51,193,255,.35);
  flex: 0 0 40px;
  overflow: hidden;
}
.omega-googleApiReviews .gr-avatar img{
  width: 90%;
  height: auto;
  object-fit: cover;
  display: block;
}
.omega-googleApiReviews .gr-who{
  min-width: 0;
}
.omega-googleApiReviews .gr-name{
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.omega-googleApiReviews .gr-metaRow{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 3px;
  opacity: .88;
  font-size: 12px;
}
.omega-googleApiReviews .gr-stars{
  letter-spacing: 1px;
}
.omega-googleApiReviews .gr-time{
  opacity: .85;
}
.omega-googleApiReviews .gr-text{
  margin: 0;
  opacity: .92;
  line-height: 1.65;
}

.omega-googleApiReviews .gr-apiNote{
  text-align: center;
  margin: 12px auto 0;
  opacity: .72;
  font-size: 13px;
  max-width: 80ch;
}


@media (max-width: 980px){
  .omega-googleApiReviews .gr-apiBar{
    border-radius: 18px;
    flex-direction: column;
    align-items: flex-start;
  }
  .omega-googleApiReviews .gr-list{
    max-height: 64vh;
  }
}




@media (max-width: 768px){
  }





@media (max-width: 768px){
  }



.has-scroll-cue{ position: relative; overflow: visible; }

.section-scroll-cue{
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 7;
  pointer-events: none;
}

.scroll-cue{
  pointer-events: auto;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #0a8dea, #5a2fba);
  color: #fff;
  box-shadow: 0 12px 34px rgba(0,0,0,.35), inset 0 0 0 2px rgba(255,255,255,.14);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
  opacity: .95;
}

.scroll-cue:hover{
  transform: translateY(2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.28), inset 0 0 0 2px rgba(255,255,255,.20);
}
.scroll-cue:active{ transform: translateY(3px); }
.scroll-cue:focus-visible{
  outline: 2px solid rgba(255,255,255,.75);
  outline-offset: 4px;
}

.section-scroll-cue.is-last{ display: none; }

@media (max-width: 768px){
  .section-scroll-cue{ bottom: 16px; }
  .scroll-cue{ width: 44px; height: 44px; }
}




body.omega-menu-open .section-scroll-cue,
body.omega-menu-open .scroll-cue{
  display:none !important;
}


.mobile-menu-panel .mobile-menu-brand img{
  width: min(260px, 70vw);
  max-width: 260px;
  height: auto;
  display:block;
}


.mobile-menu-panel .mobile-menu-brand{
  gap: 0;
  padding: 10px 0 6px;
}


.mobile-menu-panel .mobile-brand-text{
  display:none !important;
}


.mobile-menu-panel .mobile-social{
  gap: 14px;
  margin-top: 10px;
}
.mobile-menu-panel .mobile-social-btn{
  width: 50px;
  height: 50px;
  border-radius: 999px;
}
.mobile-menu-panel .mobile-social-btn svg{
  width: 24px;
  height: 24px;
  display:block;
}





body.omega-menu-open .section-scroll-cue,
body.omega-menu-open .scroll-cue{
  display:none !important;
}


.mobile-menu-panel .section-scroll-cue,
.mobile-menu-panel .scroll-cue{
  display:none !important;
}


.mobile-menu-panel .mobile-menu-header--center{
  padding-top: 10px;
  padding-bottom: 8px;
}

.mobile-menu-panel .mobile-menu-brand{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap: 10px;
}

.mobile-menu-panel .mobile-menu-brand img{
  width: min(300px, 78vw);
  max-width: 300px;
  height: auto;
  display:block;
}


.mobile-menu-panel .mobile-brand-sub,
.mobile-menu-panel .mobile-brand-text,
.mobile-menu-panel .mobile-brand-subtitle{
  display:none !important;
}


.mobile-menu-panel .mobile-social{
  margin-top: 14px;
  gap: 16px;
}

.mobile-menu-panel .mobile-social-btn{
  width: 58px;
  height: 58px;
  border-radius: 999px;
}

.mobile-menu-panel .mobile-social-btn svg{
  width: 28px;
  height: 28px;
  display:block;
}




body.lock-scroll .section-scroll,
body.lock-scroll .hero-down,
body.lock-scroll .brands-down,
body.omega-menu-open .section-scroll,
body.omega-menu-open .hero-down,
body.omega-menu-open .brands-down{
  display: none !important;
}



#videoModal.modal-overlay{
  background: rgba(0,0,0,0.92);
  backdrop-filter: none;
}
.modal-video{
  background: #000;
}
.modal-video .modal-close{
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 30;
  pointer-events: auto;
}



@media (max-width: 520px){
  .premium-brands{
    padding: 48px 0 72px;           
    background-position: center top; 
  }
  .brands-title{
    padding-top: 0;                
    font-size: 24px;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
  }
  .brands-logos{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 12px;
    margin-top: 12px;
  }
  .brands-logos img{
    max-width: 170px;
    height: 42px;
    width: 90%;
    object-fit: contain;
  }
}


.premium-brands::before{ aspect-ratio: 16 / 7; } 
  .brands-title{ padding-top: 64px; font-size: 26px; letter-spacing: 0.12em; }
  .brands-logos{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 12px;
    margin-top: 14px;
  }
  .brands-logos img{
    max-width: 160px;
    max-height: 42px;
    width: 90%;
    height: auto;
  }
}



@media (max-width: 900px){
  .omega-contact-bottom-grid{
    grid-template-columns: 1.1fr 0.9fr;
    gap: 22px;
    align-items: start;
  }
  .omega-contact-map iframe{
    height: 240px;
  }
}
@media (max-width: 520px){
  .omega-contact-bottom-grid{
    grid-template-columns: 1.15fr 0.85fr;
    gap: 16px;
    align-items: start;
  }
  .omega-contact-map{
    min-height: 160px;
  }
  .omega-contact-map iframe{
    height: 160px;
    min-height: 160px;
  }
}

@media (max-width: 380px){
  .omega-contact-bottom-grid{
    grid-template-columns: 1fr;
  }
  .omega-contact-map iframe{
    height: 200px;
    min-height: 200px;
  }
}



@media (max-width: 560px){
  .omega-footer__heading{ text-align: center; }
  .omega-footer__list li,
  .omega-footer__links li{ text-align: center; }
  .omega-footer__list a,
  .omega-footer__links a{
    justify-content: center;
  }
  .omega-footer__contact li{
    justify-content: center;
    text-align: center;
  }
}





@media (max-width: 768px) {
  
  section.premium-brands#brands{
    overflow: visible;          
    min-height: unset;          

    padding-top: 44px;
    padding-bottom: 110px;      

    background-color: #ffffff;
    background-image: url("images/brands_bk.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 88%;
  }

  .brands-title{
    font-size: 34px;
    line-height: 1.18;
    letter-spacing: .22em;
    margin-bottom: 26px;
  }

  .brands-logos{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 18px;
    align-items: center;
    justify-items: center;
    margin-inline: auto;
    max-width: 520px;
  }

  .brands-logos .brand img{
    max-height: 48px;
    width: auto;
    object-fit: contain;
  }
}
.brands-logos{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 18px;
    align-items: center;
    justify-items: center;
    margin-inline: auto;
    max-width: 520px;
  }

  .brands-logos .brand img{
    max-height: 48px;
    width: auto;
    object-fit: contain;
  }
}





.premium-brands{
  display: flex;
  align-items: center;
}
.premium-brands .premium-brands-inner{
  width: min(1280px, 94%);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


.premium-brands .brands-down{
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
}



@media (max-width: 768px) {
  section#brands.premium-brands{
    min-height: unset;
    overflow: visible;
    padding: 46px 0 56px;

    background-image: url("./images/prem_brands.jpg") !important;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 88%;
    background-color: #fff; 
  }
}

  .premium-brands .premium-brands-inner{
    gap: 20px;
  }

  .brands-logos{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 16px;
    max-width: 520px;
  }

  .brands-logos .brand img{
    max-height: 50px;
    width: auto;
    object-fit: contain;
  }

  .premium-brands .brands-down{
    bottom: 16px;
  }

}


/* =========================================
   DESKTOP HEADER SOCIAL CROPPING FIX
   Ensures left social icons never sit on the viewport edge
   ========================================= */
@media (min-width: 981px){
  .omega-header > .container{
    padding-left: max(22px, env(safe-area-inset-left));
    padding-right: max(22px, env(safe-area-inset-right));
    box-sizing: border-box;
  }
  .omega-top{ overflow: visible; }
  .omega-social{display:flex;align-items:center;gap:14px;justify-content:center;}
  .omega-actions{ justify-self: end; }
}

/* Prevent any rare horizontal clipping from sticky transforms */
html, body{ overflow-x: hidden; }

/* =========================================
   HOTFIX: Desktop header social icons cropping
   Cause: .omega-social is also used in the footer and later rules
   were overriding the header container sizing.
   Fix: scope header and footer rules explicitly.
   ========================================= */

/* Header: ensure the social "container" behaves like a container */
@media (min-width: 981px){
  .omega-header .omega-social{display:flex;align-items:center;gap:14px;justify-content:center;}
  .omega-header .omega-social a{
  text-decoration:none;
  color:#fff;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  padding:4px;
}
.omega-social a i{
  width:46px;
  height:46px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,0.18);
  border:1px solid rgba(255,255,255,0.38);
  font-size:20px;
  transition:transform .18s ease, background .18s ease, border-color .18s ease;
}
.omega-social a .social-label{
  font-size:11px;
  letter-spacing:.02em;
  opacity:.92;
  line-height:1;
}

  /* Keep the header content safely inside the viewport */
  .omega-header > .container{
    padding-left: max(28px, env(safe-area-inset-left));
    padding-right: max(28px, env(safe-area-inset-right));
  }
}

/* Footer: keep the circular social buttons style only for footer links */
.omega-footer__social a.omega-social{display:flex;align-items:center;gap:14px;justify-content:center;}

/* Minimal unified footer */
.omega-footer.omega-footer--minimal{
  padding: 28px 0;
  background: linear-gradient(180deg, #07111f 0%, #0a1627 100%);
  border-top: 1px solid rgba(255,255,255,.08);
}

.omega-footer.omega-footer--minimal::before{ display:none; }

.omega-footer.omega-footer--minimal .omega-footer__bottom{
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: 0;
  border: 0;
  min-height: 0;
}

.omega-footer.omega-footer--minimal .omega-footer__copy{
  margin:0;
  color: rgba(255,255,255,.92);
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 767px){
  .omega-footer.omega-footer--minimal{ padding: 24px 0; }
  .omega-footer.omega-footer--minimal .omega-footer__copy{
    font-size: 11px;
    letter-spacing: .06em;
    padding: 0 10px;
  }
}


/* Hide duplicate bouncing scroll arrows */
.scroll-down,
.scroll-indicator,
.scroll-arrow,
.bounce-arrow,
.hero-scroll,
.section-scroll,
.scroll-cue,
.scroll-chevron,
[data-scroll-indicator],
[data-scroll-arrow]{
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
