/* ================= GLOBAL ================= */

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: #111317;
  color: #e8ecf1;
  line-height: 1.6;
}

/* ================= HEADER ================= */

header {
  background: linear-gradient(160deg, #151a21, #1e242c);
  text-align: center;
  padding: 55px 20px;
  border-bottom: 1px solid #2a2f37;
}

.logo {
  width: 170px;
  margin-bottom: 14px;
}

.large-logo {
  width: 250px;
}

.tagline {
  font-size: 16px;
  color: #c9a34a;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ================= NAV ================= */

nav {
  background: #1a1f26;
  padding: 12px;
  text-align: center;
  border-bottom: 1px solid #2a2f37;
}

nav a {
  display: inline-block;
  padding: 10px 18px;
  margin: 0 8px;
  color: #d7dce3;
  text-decoration: none;
  border-radius: 20px;
  transition: all 0.25s ease;
  font-weight: 500;
}

nav a:hover {
  background: #c9a34a;
  color: #111317;
}

/* ================= HERO ================= */

.hero {
  text-align: center;
  padding: 110px 20px;
  background: radial-gradient(circle at top, #1c222b, #111317);
}

.hero h2 {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 10px;
}

.hero p {
  color: #aab2bc;
  max-width: 600px;
  margin: auto;
}

/* ================= BUTTONS ================= */

.btn {
  display: inline-block;
  background: #c9a34a;
  color: #111317;
  padding: 14px 32px;
  text-decoration: none;
  margin-top: 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.btn:hover {
  background: #e4bb5c;
  transform: translateY(-3px);
}

/* ================= PRIMARY CTA ================= */

.btn-primary {
  background: #ffffff;
  color: #111317;
}

.btn-primary:hover {
  background: #c9a34a;
}

/* ================= FEATURES ================= */

.features {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 70px 20px;
  flex-wrap: wrap;
}

.features div {
  background: rgba(255,255,255,0.03);
  padding: 32px;
  width: 260px;
  text-align: center;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.2s ease;
}

.features div:hover {
  transform: translateY(-6px);
}

.features h3 {
  color: #c9a34a;
}

/* ================= CONTENT ================= */

.content {
  max-width: 850px;
  margin: auto;
  padding: 55px 25px;
}

/* ================= SERVICES ================= */

.service-list li {
  padding: 12px 0;
  border-bottom: 1px solid #2a2f37;
}

/* ================= CONTACT ================= */

.contact-email {
  font-size: 22px;
  font-weight: 600;
  margin: 25px 0;
  color: #c9a34a;
}

.contact-item a {
  color: #c9a34a;
}

.contact-item a:hover {
  color: #e4bb5c;
}

.contact-buttons {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ================= SERVICE REQUEST FORM ================= */

.service-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 25px;
}

.service-form label {
  font-weight: 600;
}

.service-form input,
.service-form select,
.service-form textarea {
  padding: 12px 14px;
  border: 1px solid #2a2f37;
  border-radius: 6px;
  font-size: 15px;
  background: #1a1f26;
  color: #e8ecf1;
}

.service-form input:focus,
.service-form select:focus,
.service-form textarea:focus {
  outline: none;
  border-color: #c9a34a;
  box-shadow: 0 0 4px rgba(201,163,74,0.5);
}

.service-form textarea {
  resize: vertical;
  min-height: 100px;
}

.service-form hr {
  border-top: 1px solid #2a2f37;
}

/* ================= PROMISE SECTION ================= */

.promise {
  background: #0e1116;
  padding: 80px 20px;
  text-align: center;
}

.promise p {
  max-width: 720px;
  margin: auto;
  margin-bottom: 40px;
  line-height: 1.7;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: auto;
}

.promise-grid div {
  background: rgba(255,255,255,0.04);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
}

/* ================= CALL TO ACTION ================= */

.cta {
  background: linear-gradient(160deg, #1e242c, #151a21);
  text-align: center;
  padding: 75px 20px;
}

/* ================= FOOTER ================= */

footer {
  background: #0c0f14;
  color: #9aa3ad;
  text-align: center;
  padding: 25px;
  margin-top: 60px;
  font-size: 13px;
  border-top: 1px solid #2a2f37;
}

/* ================= SUCCESS POPUP ================= */

.popup-box {
  background: #1a1f26;
  max-width: 420px;
  padding: 35px 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
}

.popup-box h3 {
  margin-top: 0;
  color: #c9a34a;
}

.popup-box p {
  line-height: 1.6;
}
