/* Base */
:root{
  --bg:#0b1220;
  --surface: rgba(255,255,255,.06);
  --surface-2: rgba(255,255,255,.08);
  --text:#e9eefc;
  --muted: rgba(233,238,252,.72);
  --primary:#2dd4bf;
  --primary-2:#60a5fa;
  --border: rgba(255,255,255,.12);
  --shadow: 0 20px 60px rgba(0,0,0,.35);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(96,165,250,.25), transparent 60%),
    radial-gradient(900px 500px at 90% 0%, rgba(45,212,191,.22), transparent 55%),
    var(--bg);
  color:var(--text);
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }

.container{ width:min(1100px, 92vw); margin:0 auto; }

/* Header */
.site-header{
  position:sticky; top:0; z-index:50;
  background: rgba(11,18,32,.6);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{
  font-weight:900; letter-spacing:.2px;
  font-size:1.05rem;
}
.nav{ display:flex; gap:18px; align-items:center; }
.nav a{ color:var(--muted); font-weight:600; font-size:.95rem; }
.nav a:hover{ color:var(--text); }

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius: 999px;
  font-weight:800;
  border:1px solid transparent;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  gap:10px;
  white-space:nowrap;
}
.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  box-shadow: 0 14px 40px rgba(45,212,191,.22);
}
.btn-primary:hover{ border-color: rgba(255,255,255,.25); }

.btn-ghost{
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.12);
  color: var(--text);
}
.btn-ghost:hover{ background: rgba(255,255,255,.07); }

/* Sections */
main{ padding-bottom: 40px; }
.section{ padding: 70px 0; }
.section-alt{ background: rgba(255,255,255,.02); border-top:1px solid rgba(255,255,255,.05); border-bottom:1px solid rgba(255,255,255,.05); }

.section-head{ text-align:center; margin-bottom: 26px; }
.section-head h2{ margin:0 0 8px; font-size: clamp(1.5rem, 2.5vw, 2.1rem); }
.section-head p{ margin:0; color:var(--muted); font-weight:600; }

/* Hero */
.hero{ padding: 40px 0 20px; }
.hero-inner{
  display:grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 26px;
  align-items:center;
}

.hero-copy{ padding: 10px 0; }
.eyebrow{
  display:inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(45,212,191,.12);
  border: 1px solid rgba(45,212,191,.25);
  color: rgba(223,255,250,.95);
  font-weight:900;
  letter-spacing:.3px;
  margin: 0 0 12px;
}
.hero-copy h1{
  margin: 0 0 14px;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height:1.05;
}
.lead{ color: var(--muted); margin: 0 0 18px; font-size: 1.05rem; font-weight:650; }

.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom: 18px; }

.hero-stats{
  list-style:none; padding:0; margin: 18px 0 0;
  display:flex; gap: 14px; flex-wrap:wrap;
}
.hero-stats li{
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  min-width: 160px;
}
.stat-value{ font-weight: 1000; font-size: 1.15rem; }
.stat-label{ color: var(--muted); font-weight:650; font-size: .95rem; margin-top: 4px; }

.hero-card{
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-photo{ aspect-ratio: 4/3; }
.hero-photo img{ height:100%; object-fit:cover; width:100%; }
.hero-badges{ padding: 14px; display:flex; gap:10px; flex-wrap:wrap; border-top:1px solid rgba(255,255,255,.08); }
.badge{
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  font-weight:800;
  color: rgba(233,238,252,.9);
  font-size: .92rem;
}

/* Grid + Cards */
.grid{ display:grid; gap: 16px; }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }

.card{
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  padding: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,.16);
}
.card h3{ margin: 0 0 10px; font-size:1.15rem; }
.card p{ margin:0 0 14px; color: var(--muted); font-weight:650; }

.checklist{ margin:0; padding-left: 18px; color: rgba(233,238,252,.86); }
.checklist li{ margin: 7px 0; font-weight:650; }

/* Gallery */
.gallery-item{ margin:0; border-radius: 16px; overflow:hidden; border: 1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.03); }
.gallery-item img{ height: 220px; width: 100%; object-fit:cover; transition: transform .25s ease; }
.gallery-item:hover img{ transform: scale(1.04); }

/* Reviews */
.reviews{ margin-top: 6px; }
.review{
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  padding: 18px;
}
.review-top{ display:flex; align-items:center; gap: 12px; margin-bottom: 10px; }
.avatar{
  width: 38px; height: 38px;
  border-radius: 12px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(45,212,191,.15);
  border: 1px solid rgba(45,212,191,.25);
  font-weight: 1000;
}
.review h3{ margin:0; font-size:1.05rem; }
.rating{ color: #ffd66b; font-weight: 900; letter-spacing:2px; }
.review-text{ margin: 10px 0 0; color: var(--muted); font-weight:650; line-height:1.5; }

/* Contact */
.contact{ display:grid; grid-template-columns: 1.25fr .75fr; gap: 18px; align-items:start; }
.contact-card{
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  padding: 20px;
}
.contact-card h2{ margin-top:0; }

.form{ display:grid; gap: 12px; margin-top: 14px; }
.form label{ display:grid; gap: 8px; font-weight:800; color: rgba(233,238,252,.92); }
.form input, .form select, .form textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  color: var(--text);
  outline: none;
  font-weight:650;
}
.form input::placeholder, .form textarea::placeholder{ color: rgba(233,238,252,.45); }
.form input:focus, .form select:focus, .form textarea:focus{ border-color: rgba(45,212,191,.55); }

.form-note{ margin: 12px 0 0; color: rgba(233,238,252,.55); font-weight:650; font-size: .93rem; }

.contact-side{
  display:grid; gap: 12px;
}
.side-item{
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  padding: 16px;
}
.side-item h3{ margin:0 0 8px; font-size:1.05rem; }
.side-item p{ margin:0; color: var(--muted); font-weight:650; }

/* Footer */
.site-footer{ padding: 26px 0; border-top:1px solid rgba(255,255,255,.08); }
.footer-inner{ display:flex; align-items:center; justify-content:space-between; gap: 16px; }
.muted{ color: rgba(233,238,252,.62); font-weight:650; margin-top: 4px; }
.footer-links{ display:flex; gap: 16px; flex-wrap:wrap; }
.footer-links a{ color: var(--muted); font-weight:700; }
.footer-links a:hover{ color: var(--text); }

/* Responsive */
@media (max-width: 900px){
  .hero-inner{ grid-template-columns: 1fr; }
  .grid-4{ grid-template-columns: repeat(2, 1fr); }
  .grid-3{ grid-template-columns: repeat(2, 1fr); }
  .contact{ grid-template-columns: 1fr; }
  .nav{ display:none; }
}

@media (max-width: 520px){
  .grid-3{ grid-template-columns: 1fr; }
  .grid-4{ grid-template-columns: 1fr 1fr; }
  .hero-stats li{ min-width: 0; width:100%; }
  .header-inner{ align-items:flex-start; }
  .site-footer .footer-inner{ flex-direction:column; align-items:flex-start; }
}

