.site-header {
    position: fixed;
    top: 0;
    left: 0;
    justify-content: space-between;
    width: 100%;
    height: 80px;
    background:#110b19;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
        padding:0.8rem 5%;

    z-index: 1000;
}


.logo img {
    height: 130px;
    display: block;
}

.nav-desktop{
  display:flex;
  align-items:center;
  gap:18px;
}

.nav-links{
  display:flex;
  align-items:center;
  list-style:none;
  gap:2px;
}


.nav-link{
  color:rgb(197,197,197);
  text-decoration:none;
  font-weight:700;
  font-size:1.05rem;
  padding:10px 10px;
  border-radius:12px;
  transition:all .2s ease;
}
.nav-link:hover{
  color:#fff;
  background:rgba(255,255,255,.06);
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.nav-btn{
  height:42px;
  padding:0 14px;
  min-width: 100px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight:900;
  
  transition:.2s transform,.2s opacity,.2s border-color;
}
.nav-btn:hover{transform:translateY(-1px);opacity:.95}

.nav-btn-solid{
background: linear-gradient(rgba(25, 15, 39, 0.966), rgb(25, 15, 39)), url(../imgs/blendycity.png);
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .45), inset 0 1px 0 rgba(255, 255, 255, .03);
      color:#fff;
  border:0;
}
.nav-btn-ghost{
  background:#29183f;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.26));
  color:#fff;
}

.social-link{
  font-size:1.55rem;
  color:#fff;
  padding:8px;
  border-radius:12px;
  text-decoration: none;
  display:inline-flex;
}
.social-link:hover{background:rgba(255,255,255,.06)}
.hamburger{
  display:none;
  width:44px;
  height:44px;
  padding:0;
  border-radius:12px;
  backdrop-filter:blur(6px);
  cursor:pointer;
  z-index:1003;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:6px;
}

.hamburger span{
  display:block;
  width:22px;
  height:4px;
  background:#fff;
  border-radius:2px;
  transition:
    transform .28s cubic-bezier(.4,0,.2,1),
    opacity .18s ease;
}

/* ACTIVE → X */
.hamburger.active span:nth-child(1){
  transform:translateY(6px) rotate(45deg);
}

.hamburger.active span:nth-child(2){
  opacity:0;
}

.hamburger.active span:nth-child(3){
  transform:translateY(-6px) rotate(-45deg);
}

/* MOBILE ONLY */
@media (max-width: 1024px){
  .hamburger{
    display:flex;
  }
}


.nav-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  z-index:999;
}

.nav-drawer{
  position:fixed;
  top:0;
  right:-320px;
  width:320px;
  max-width:86vw;
  height:100vh;
    background: linear-gradient(rgba(25, 15, 39, 0.959), rgb(25, 15, 39)), url(../imgs/blendycity.png);
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .45), inset 0 1px 0 rgba(255, 255, 255, .03);
    transition: transform .25s ease, box-shadow .25s ease;  border-left:1px solid rgba(255,255,255,.08);
  z-index:1002;
  transition:right .28s ease;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:16px;
  backdrop-filter:blur(12px);
}
.nav-drawer.open{right:0}

.drawer-brand img{
  height:62px;
  width:auto;
  display:block;
  margin-bottom:14px;
}

.drawer-links{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.drawer-link{
  color:#fff;
  text-decoration:none;
  font-weight:900;
  padding:12px 12px;
  border-radius:14px;
    background-color: rgb(37, 18, 53);
}

.drawer-bottom{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.drawer-btn{
  height:48px;
  border-radius:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight:900;
}
.drawer-btn-solid{background: linear-gradient(rgba(25, 15, 39, 0.966), rgb(25, 15, 39)), url(../imgs/blendycity.png);
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .45), inset 0 1px 0 rgba(255, 255, 255, .03);
    color: #fff;
    border: 0;}
.drawer-btn-ghost{    background-color: rgb(47, 22, 68);
;color:#fff;}

.drawer-social{
  margin-top:6px;
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:#fff;
  font-weight:900;
  padding:12px 12px;
  border-radius:14px;
    background-color: rgb(37, 18, 53);
}
.drawer-social i{font-size:1.4rem}

.no-scroll{overflow:hidden}
@media (max-width: 900px){
  .nav-desktop{display:none}
  .hamburger{display:flex}
}
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.2rem;
    align-items: center;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.25s ease;
}




.nav-btn {
    text-decoration: none;
    font-weight: 600;
    padding: 0.45rem 1rem;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: background 0.25s ease, color 0.25s ease;
}

.nav-btn-ghost {
    color: #fff;
}



.nav-btn-solid {
    color: #fff;
}

.social-link {
    font-size: 1.6rem;
    color: #fff;
    padding: 6px;
    transition: color 0.25s ease;
}

.social-link:hover {
    color: #824ecc;
}

.hamburger {
    position: absolute;
    right: 2%;
    top: 50%;
    transform: translateY(-50%);
    background: #29183f;
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.26));    border: none;
    display: none;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: #fff;
}

@media (max-width: 1024px) {
    .nav-desktop {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .site-header {
        transform: none;
        justify-content: space-between;
    }
}
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav ul {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 4rem;
        transition: left 0.4s ease;
        gap: 3rem;
        z-index: 999;
    }

    nav ul.active {
        left: 0;
    }

    nav ul li a {
        font-size: 1.6rem;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Hero mobile adjustments */
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }

    .hero-text {
        text-align: center;
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-logo img {
        max-width: 300px;
        margin-top: 2rem;
    }

    .button-container {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .reviews h2 {
        font-size: 2rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
}
.site-header > .logo,
.site-header > .nav-desktop {
    display: flex;
    align-items: center;
}

.site-header > .logo {
  margin-top: 15px;
    margin-right: 3rem;
}
@media (max-width: 1024px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    height: 72px;
    padding: 0 5%;
  }

  .logo img {
    height: 64px;
  }

  .hero {
    padding-top: 110px;
    min-height: auto;
  }

  .hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem 1rem;
  }

  .hero-text {
    max-width: 100%;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.4rem;
  }

  .hero-text .tagline {
    font-size: 1.05rem;
  }

  .hero-logo img {
    max-width: 280px;
    margin: 0 auto;
  }

  .button-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .btn {
    height: 52px;
    width: 100%;
    padding: 0 1.25rem;
  }

  .info-box {
    max-width: 100%;
    padding: 1rem;
  }

  .location-map {
    height: 160px;
  }

  .reviews {
    padding: 4rem 1rem;
  }

  .reviews h2 {
    font-size: 2rem;
  }

  .reviews .subtitle {
    font-size: 1rem;
  }

.nav-actions{
  margin-right: 40px;
}
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    padding: 1rem;
  }

  .nav-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-drawer {
    width: 86vw;
    max-width: 320px;
  }
}
.nav-actions .nav-btn {
    border-radius: 13px;

}

@media (max-width: 1200px) {
  .nav-actions .nav-btn {
  height: 34px;
  padding: 0 10px;
  min-width: auto;
  font-size: 0.85rem;
  border-radius: 10px;
  font-weight: 700;
  }

  .social-link{
    display: none;
  }
}
