








:root{
--bg:#0b0b0c;--panel:#111214;--panel2:#15171a;
--text:#f4f4f4;--muted:#c9c9c9;
--gold:#d4af37;--gold2:#b48a1f;
--line:rgba(212,175,55,.25);
--shadow:0 12px 30px rgba(0,0,0,.45);
--radius:18px;--max:1180px;
}
*{box-sizing:border-box}
body{
margin:0;
font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
color:var(--text);
background:
radial-gradient(900px 500px at 15% 0%, rgba(212,175,55,.10), transparent 60%),
radial-gradient(900px 500px at 85% 0%, rgba(212,175,55,.07), transparent 60%),
linear-gradient(180deg, var(--bg), #070708);
line-height:1.5;
}
a{color:inherit;text-decoration:none}
.wrap{max-width:var(--max);margin:0 auto;padding:0 18px}
header{position:sticky;top:0;z-index:50;background:rgba(7,7,8,.75);backdrop-filter:blur(8px);border-bottom:1px solid rgba(212,175,55,.2)}
.nav{display:flex;align-items:center;justify-content:space-between;padding:14px 0}
.brand{display:flex;gap:12px;align-items:center}
.brand img{width:56px;height:56px;border-radius:12px;background:rgba(212,175,55,.1);border:1px solid rgba(212,175,55,.25);padding:6px}
nav ul{list-style:none;display:flex;gap:10px;margin:0;padding:0}
nav a{padding:10px 12px;font-weight:700;color:var(--muted)}
nav a:hover{color:#fff}
.hero{padding:40px 0}
.hero-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:18px}
.card{background:rgba(17,18,20,.9);border-radius:18px;border:1px solid rgba(212,175,55,.25);box-shadow:var(--shadow)}
.hero-left{padding:26px}
.hero-right{position:relative;overflow:hidden;border-radius:18px}
.hero-right::before{content:"";position:absolute;inset:0;background:linear-gradient(to bottom,rgba(0,0,0,.15),rgba(0,0,0,.5));z-index:0}
.hero-right>*{position:relative;z-index:1}
h1{font-size:40px;line-height:1.1}
.sub{color:var(--muted)}
.btn{display:inline-block;padding:12px 18px;border-radius:14px;background:linear-gradient(180deg,var(--gold),var(--gold2));color:#111;font-weight:900;margin-top:12px}
.map-wrap{margin:50px 0;border-radius:18px;overflow:hidden;border:1px solid rgba(212,175,55,.25);box-shadow:0 20px 50px rgba(0,0,0,.6)}

/* ===============================
   CITY PAGE – MOBILE NAV FIX
   =============================== */
@media (max-width: 900px){

  header .nav{
    flex-wrap: wrap;
  }

  header nav ul{
    flex-wrap: wrap;
    justify-content: center;
  }

  header nav li{
    white-space: nowrap;
  }

}



/* ===============================
   CITY PAGE – MOBILE STACK FIX
   =============================== */
@media (max-width: 980px){

  /* Stack hero grid */
  .hero-grid{
    display:block;
  }

  .hero-grid > *{
    width:100%;
    max-width:100%;
  }

  .hero-right{
    margin-top:18px;
    min-height:260px;
  }

  /* Improve text readability */
  h1{
    font-size:32px;
  }

}





/* ===============================
   REVIEWS SECTION – STACKED
   =============================== */

#reviews{
  padding:70px 0;
}

#reviews h2{
  text-align:center;
  font-size:30px;
  margin-bottom:40px;
}

.reviews-wrap{
  max-width:760px;
  margin:0 auto;
}

.review{
  background:var(--panel2);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:28px 24px;
  margin-bottom:28px;
  text-align:center;
  box-shadow:var(--shadow);
}

.review-stars{
  color:var(--gold);
  font-size:20px;
  letter-spacing:3px;
  margin-bottom:14px;
}

.review p{
  color:var(--muted);
  font-style:italic;
  margin-bottom:18px;
}

.review-author{
  font-weight:700;
  font-size:14px;
  color:#fff;
}

.google-link{
  text-align:center;
  margin-top:30px;
  font-weight:700;
}

.google-link a{
  color:var(--gold);
}

.google-link a:hover{
  text-decoration:underline;
}


.google-badge{
  text-align:center;
  margin-bottom:35px;
}

.google-badge img{
  max-width:800px;
  width:100%;
  height:auto;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,.5);
}






















