:root {
  --bg: #0b1220;
  --card: #0f172a;
  --muted: #94a3b8;
  --text: #e5e7eb;
  --brand: #22c55e;
  --brand-2: #06b6d4;
  --accent: #f97316;
  --glass: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  background: radial-gradient(1200px 600px at 10% -10%, rgba(34, 197, 94, 0.15), transparent), 
              radial-gradient(1000px 600px at 90% 0%, rgba(6, 182, 212, 0.12), transparent), 
              var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
}

.wrapper { width: 100vw; max-width: 100vw; }

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 28px;
  background: linear-gradient(180deg, rgba(11, 18, 32, 0.85), rgba(11, 18, 32, 0.6));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo { font-weight: 800; letter-spacing: 0.3px; }

.nav a {
  color: var(--text);
  opacity: .9;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 40px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1607472586893-edb57bdc0e39?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
  opacity: .25;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 18, 32, 0.7) 0%, rgba(11, 18, 32, 0.4) 50%, rgba(11, 18, 32, 0.2) 100%);
  z-index: 0;
}

.hero > div { position: relative; z-index: 2; max-width: 720px; }

.eyebrow {
  display: inline-block;
  padding: 6px 10px;
  border: 1px solid var(--border);
  background: var(--glass);
  border-radius: 999px;
  font-size: 12px;
  margin-bottom: 16px;
}

.hero h1 { font-size: 56px; line-height: 1.05; margin: 0 0 10px; }

.gradient {
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p { font-size: 18px; color: var(--muted); }

.cta-row { margin-top: 22px; display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  color: var(--text);
  transition: transform 0.2s;
}

.btn.primary { background: linear-gradient(90deg, var(--brand), var(--brand-2)); color: #02120b; border: none; }
.btn.accent { background: var(--accent); border: none; color: white; }

.section { padding: 80px 28px; }
.container { max-width: 1200px; margin: 0 auto; }

.kpis { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin-top: 22px; }
.kpi { background: var(--glass); border: 1px solid var(--border); border-radius: 14px; padding: 18px; }
.kpi b { font-size: 24px; }
.kpi span { display: block; color: var(--muted); font-size: 13px; margin-top: 6px; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; margin-top: 26px; }

.card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
}

.about { background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent); }
.bullets { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 10px; margin-top: 18px; }

.bullet { display: flex; gap: 10px; align-items: flex-start; background: var(--glass); border: 1px solid var(--border); padding: 14px; border-radius: 12px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: linear-gradient(90deg, var(--brand), var(--brand-2)); margin-top: 6px; }

.booking .frame { margin-top: 20px; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); }
.booking iframe { width: 100%; height: 680px; border: none; background: white; }

.contact .panel { display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px; margin-top: 18px; }

.info { background: var(--glass); border: 1px solid var(--border); border-radius: 16px; padding: 20px; }
.info a { display: block; margin: 8px 0; color: #a5f3fc; text-decoration: none; }

.form { background: var(--glass); border: 1px solid var(--border); border-radius: 16px; padding: 20px; }
.input { width: 100%; padding: 12px; border-radius: 10px; border: 1px solid var(--border); background: #020617; color: var(--text); margin-bottom: 10px; }
.submit { width: 100%; padding: 14px; border-radius: 10px; border: none; background: linear-gradient(90deg, var(--brand), var(--brand-2)); font-weight: 700; cursor: pointer; }

.footer { padding: 30px; text-align: center; color: #9ca3af; border-top: 1px solid var(--border); margin-top: 40px; }

.sticky-call { position: fixed; bottom: 18px; right: 18px; background: linear-gradient(90deg, var(--brand), var(--brand-2)); color: #02120b; padding: 14px 18px; border-radius: 999px; text-decoration: none; font-weight: 800; z-index: 1001; }

/* --- MOBILE STYLES (NEW) --- */
@media (max-width: 768px) {
  .nav { display: none; } /* Hide text links on mobile */
  .hero { padding: 60px 20px; text-align: center; }
  .hero h1 { font-size: 34px; }
  .cta-row { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .contact .panel { grid-template-columns: 1fr; }
  .kpis { grid-template-columns: 1fr; }
}