:root{
  --bg:#0c1220;
  --panel: rgba(255,255,255,0.06);
  --text:#f3f6ff;
  --muted: rgba(243,246,255,0.75);
  --line: rgba(255,255,255,0.14);

  --btn:#ffffff;
  --btnText:#0c1220;

  --footerHeight: 78px;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  background:
    radial-gradient(900px 420px at 20% 0%, #1a2a55 0%, rgba(12,18,32,0) 70%),
    var(--bg);
  background-repeat: no-repeat;

  color:var(--text);
  line-height:1.55;

  padding-bottom: var(--footerHeight);
  overflow-x: hidden;
}

a{ color: inherit; text-decoration:none; }
a:hover{ text-decoration: underline; }

.container{
  width:min(1100px, 92vw);
  margin-inline:auto;
}

.topbar{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.10);
}

.topbar .container{
  width: 100%;
  max-width: none;
  padding-left: 100px;
  padding-right: 160px;
  margin-inline: 0;
}

.topbar-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 2px;
}

.topbar-brand{
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.1;
  text-decoration: none;
}

.brand-title{
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 1.12rem;
  color: #111111;
}

.brand-subtitle{
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
}

.topbar-nav{
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.topbar-nav a{
  color: #111111;
  font-weight: 650;
  font-size: 1rem;
  text-decoration: none;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
}

.topbar-nav a:hover{
  border-bottom-color: rgba(0,0,0,0.25);
}

.topbar-nav a.active{
  border-bottom-color: #111111;
}

.menu-toggle{
  display: none;
  border: 1px solid rgba(0,0,0,0.12);
  background: #ffffff;
  color: #111111;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
}

.mobile-menu{
  display: none;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.10);
  padding: 8px 0;
}

.mobile-menu a{
  display: block;
  color: #111111;
  font-weight: 650;
  font-size: 1rem;
  text-decoration: none;
  padding: 12px 2px;
  margin: 0 16px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.mobile-menu a:last-child{
  border-bottom: 0;
}

.mobile-menu.open{
  display: block;
}

/* ✅ HERO SECTION CENTERED */
.hero {
  min-height: calc(100vh - 76px - var(--footerHeight));
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 64px 0;
}

.hero-inner {
  max-width: 950px;
  margin: 0 auto;
}

.tag{
  display:inline-block;
  padding: 6px 10px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0 0 12px;
}

h1{
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height:1.15;
}

.subtitle{
  margin:0 0 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 14px 0 20px;
}


.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: var(--btn);
  color: var(--btnText);
  font-weight: 650;
  cursor:pointer;
}

.btn:hover{ opacity: 0.92; text-decoration:none; }

.btn-outline{
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.info-cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.card{
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 16px;
  padding: 14px;
}

.label{
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 5px;
}

.value{
  font-weight: 650;
}

.section{
  padding: 44px 0;
  border-top: 1px solid var(--line);
}

h2{ margin:0 0 10px; font-size: 1.4rem; }

.muted{ color: var(--muted); }

.contact-layout{
  display:grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: 200px;
  align-items:start;
}

.contact-details{
  margin-top: 18px;
  display:grid;
  gap: 12px;
}

.detail{
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  background: rgba(255,255,255,0.04);
}

.map-title{
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.map-embed{
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}

.map-embed iframe{
  width: 100%;
  height: 440px;
  border: 0;
  display: block;
}

.contact-form{
  grid-column: 1 / -1;
  margin-top: 6px;
}

.form{
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255,255,255,0.05);
  display:grid;
  gap: 12px;
}

label{
  display:grid;
  gap: 6px;
  font-weight: 650;
  font-size: 0.92rem;
}

input, textarea{
  width: 100%;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 12px;
  background: rgba(12,18,32,0.55);
  color: var(--text);
  outline:none;
  resize: none;
}

.checkbox{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  color: var(--muted);
  font-weight: 500;
}

.checkbox input{
  width:18px;
  height:18px;
  margin-top:2px;
}

.fineprint{
  margin:0;
  font-size: 0.85rem;
  color: var(--muted);
}

.hidden{ display:none; }

.footer{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--footerHeight);
  display: flex;
  align-items: center;
  background: rgba(12,18,32,0.88);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  z-index: 999;
}

.footer-inner{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
  padding: 0 clamp(14px, 3vw, 26px);
}

.footer-links{
  display:flex;
  gap: 14px;
}

.topbar-inner > *,
.footer-inner > *,
.contact-layout > *{
  min-width: 0;
}

@media (max-width: 1200px){
  .contact-layout{ gap: 64px; }
}

@media (max-width: 1100px){
  .topbar .container{
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 900px){
  .info-cards{ grid-template-columns: 1fr; }

  .contact-layout{
    grid-template-columns: 1fr;
  }

  .contact-form{
    grid-column: auto;
  }

  .map-embed iframe{
    height: 320px;
  }
}

@media (max-width: 760px){
  .topbar-inner{
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 0;
    gap: 10px;
  }

  .topbar-nav{
    gap: 18px;
  }

  :root{
    --footerHeight: 92px;
  }

  .contact-form textarea {
    height: 150px;
    resize: none;
    min-height: unset;
    max-height: unset;
  }

  .menu-toggle{
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .topbar-nav{ display: none; }

  .topbar-inner{
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .topbar .container{
    padding-left: 16px;
    padding-right: 16px;
  }
}
