:root{
  --bg:#0a0a0b;
  --panel:#121316;
  --panel2:#17181c;
  --text:#f2f2f2;
  --muted:#a6acb3;
  --line:rgba(255,255,255,.08);

  --accent:#b9973f;
  --accent-dark:#8c6f2b;
  --accent-light:#d6b86a;
}

*{box-sizing:border-box;}

body{
  margin:0;
  font-family:'Inter',sans-serif;
  background:var(--bg);
  color:var(--text);
}

.container{
  width:90%;
  max-width:1100px;
  margin:auto;
}

.muted{ color:var(--muted); }

/* HEADER */
.header{
  padding:18px 0;
  border-bottom:1px solid var(--line);
  background:#0f1012;
}

.header-inner{
  display:flex;
  justify-content:center;
  align-items:center;
}

.brand-logo{
  width:min(820px,96%);
  height:auto;
}

/* HERO */
.hero{
  padding:80px 0;
  text-align:center;
}

.hero h1{
  font-size:46px;
  letter-spacing:-1px;
  margin:0 0 20px;
}

.hero-text{
  max-width:900px;
  margin:0 auto 30px;
  color:var(--muted);
  line-height:1.7;
}

/* GOLD BUTTON (used everywhere now) */
.btn,
.social-btn{
  display:inline-block;
  background:linear-gradient(180deg,var(--accent-light),var(--accent),var(--accent-dark));
  padding:14px 26px;
  border-radius:14px;
  color:#000;
  text-decoration:none;
  font-weight:800;
  letter-spacing:.4px;
  border:1px solid rgba(185,151,63,.55);
  transition:.25s ease;
  min-width:240px;
  text-align:center;
}

.btn:hover,
.social-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 30px rgba(0,0,0,.5);
}

/* SECTIONS */
.section{
  padding:70px 0;
}

h2{
  text-align:center;
  font-size:32px;
  margin:0 0 40px;
}

/* GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:25px;
}

/* SERVICE CARDS */
.card{
  background:var(--panel2);
  padding:28px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.05);
  text-align:center;
  transition:.25s ease;
}

.card:hover{
  transform:translateY(-4px);
  border-color:rgba(185,151,63,.3);
  box-shadow:0 15px 40px rgba(0,0,0,.6);
}

/* CONTACT */
.contact-lux{
  background:linear-gradient(180deg,rgba(255,255,255,.02),rgba(255,255,255,0));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.contact-head{
  text-align:center;
  margin-bottom:30px;
}

.contact-grid-lux{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:25px;
}

.contact-tile{
  text-decoration:none;
  color:var(--text);
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.07);
  border-radius:20px;
  padding:28px;
  transition:.25s ease;
  display:block;
}

.contact-tile:hover{
  transform:translateY(-6px);
  border-color:rgba(185,151,63,.35);
  box-shadow:0 20px 50px rgba(0,0,0,.6);
}

.contact-tile-top{
  display:flex;
  align-items:center;
  gap:15px;
  margin-bottom:10px;
}

.contact-icon{
  width:48px;
  height:48px;
  border-radius:14px;
  background:rgba(185,151,63,.12);
  border:1px solid rgba(185,151,63,.3);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
}

.contact-title{
  font-size:20px;
  font-weight:800;
}

.contact-detail{
  font-weight:700;
  color:#fff;
}

/* THANK YOU SECTION */
.thank-you-section{
  background:linear-gradient(180deg,rgba(185,151,63,.08),rgba(0,0,0,0));
  border-top:1px solid var(--line);
}

.thank-you-container{
  text-align:center;
  max-width:850px;
  margin:auto;
}

.thank-you-text{
  margin:20px auto 40px;
  color:var(--muted);
  line-height:1.6;
}

.thank-actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:20px;
}

/* FOOTER */
.footer{
  padding:30px 0;
  border-top:1px solid var(--line);
  background:#0f1012;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:14px;
}

.footer-title{
  font-weight:800;
  color:var(--accent-light);
}

/* MOBILE */
@media (max-width: 820px){
  .hero h1{ font-size:34px; }
  .social-btn{ width:100%; }
}