/* public_html/assets/css/style.css */
:root{
  --bg:#0b1220;
  --card:#0f1a33;
  --text:#e8eefc;
  --muted:#a9b6d8;
  --accent:#6d28d9;
  --accent2:#0ea5e9;
  --line:rgba(255,255,255,.10);
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:linear-gradient(180deg,var(--bg),#070b14);
  color:var(--text);
}

a{color:inherit; text-decoration:none}
.container{width:min(1100px,92%); margin:0 auto}
.muted{color:var(--muted)}
hr{border:none; border-top:1px solid var(--line); margin:28px 0}

.site-header{
  position:sticky; top:0; z-index:1000;
  background:rgba(7,11,20,.75);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.header-row{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{display:flex; gap:10px; align-items:center}
.brand-logo{
  width:40px;
  height:40px;
  object-fit:contain;
  border-radius:12px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  padding:4px;
}

.brand-mark{
  width:34px; height:34px; display:grid; place-items:center;
  border-radius:10px;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  font-weight:800;
}
.brand-name{font-weight:700; letter-spacing:.2px}

.nav{display:flex; gap:14px; align-items:center; flex-wrap:wrap}
.nav-link{
  padding:8px 10px;
  border-radius:10px;
  color:var(--muted);
}
.nav-link:hover{background:rgba(255,255,255,.06); color:var(--text)}
.nav-link.active{color:var(--text); background:rgba(109,40,217,.22); border:1px solid rgba(109,40,217,.35)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:12px;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  color:white;
  font-weight:700;
  border:0;
}
.btn-sm{padding:8px 12px; border-radius:10px; font-weight:700}
.btn-outline{
  background:transparent;
  border:1px solid rgba(255,255,255,.20);
}
.btn-outline:hover{background:rgba(255,255,255,.06)}

.hero{
  padding:70px 0 35px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:stretch;
}
@media(max-width:900px){
  .hero-grid{grid-template-columns:1fr}
}
.card{
  background:rgba(15,26,51,.72);
  border:1px solid var(--line);
  border-radius:18px;
  padding:22px;
  box-shadow:0 12px 35px rgba(0,0,0,.35);
}
.h1{font-size:44px; line-height:1.08; margin:0 0 12px}
@media(max-width:600px){.h1{font-size:34px}}
.lead{font-size:16px; color:var(--muted); margin:0 0 18px}

.badge-row{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px}
.badge{
  display:inline-flex; gap:8px; align-items:center;
  padding:9px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--muted);
}

.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
@media(max-width:900px){.grid{grid-template-columns:1fr}}
.item-title{font-weight:800; margin:0 0 6px}
.item-text{margin:0; color:var(--muted); font-size:14px}

.section{padding:20px 0 40px}
.section-title{font-size:22px; margin:0 0 12px}
.kicker{color:var(--muted); margin:0 0 14px}

.form label{display:block; font-weight:700; margin:12px 0 6px}
.input, .select, .textarea{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--text);
  outline:none;
}
.textarea{min-height:140px; resize:vertical}
.form-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}

.alert{
  border-radius:14px;
  padding:12px 14px;
  border:1px solid var(--line);
  margin:0 0 14px;
}
.alert.ok{background:rgba(14,165,233,.10); border-color:rgba(14,165,233,.25)}
.alert.err{background:rgba(239,68,68,.10); border-color:rgba(239,68,68,.25)}

.site-footer{
  border-top:1px solid var(--line);
  background:rgba(7,11,20,.70);
  padding:30px 0 20px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr;
  gap:16px;
}
@media(max-width:900px){.footer-grid{grid-template-columns:1fr}}
.footer-title{font-weight:800; margin-bottom:10px}
.footer-link{display:block; color:var(--muted); padding:6px 0}
.footer-link:hover{color:var(--text)}
.footer-bottom{padding-top:16px}
/* =========================
   Fix dropdown text visibility
   (Select service / Select package)
========================= */

/* The closed select (selected value) */
select.select,
select.input,
select {
  color: #000 !important;            /* deep black text */
  background: #ffffff !important;    /* white background */
}

/* Options inside the dropdown list */
select option {
  color: #000 !important;
  background: #ffffff !important;
}

/* Make placeholder option (Select a service) also black */
select option[value=""] {
  color: #000 !important;
}

/* If browser applies weird styles on focus */
select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,255,255,.12);
}
