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

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #0f141a;
  color: #e6eaf0;
}

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

header {
  background: linear-gradient(135deg, #0f2b46, #163d5f);
  color: white;
  text-align: center;
  padding: 45px 20px;
  border-bottom: 4px solid #ff8a3d;
}

.logo {
  width: 190px;
  margin-bottom: 12px;
}

.large-logo {
  width: 260px;
}

.tagline {
  font-size: 17px;
  margin-top: 5px;
  color: #3dd2ff;
  letter-spacing: 0.5px;
}

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

nav {
  background: #163d5f;
  text-align: center;
  padding: 14px;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 18px;
  font-weight: bold;
  font-size: 15px;
}

nav a:hover {
  color: #ff8a3d;
  border-bottom: 2px solid #ff8a3d;
}

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

.hero {
  text-align: center;
  padding: 90px 20px;
  background: #161c24;
}

.hero h2 {
  font-size: 34px;
}

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

.btn {
  display: inline-block;
  background: linear-gradient(135deg, #3dd2ff, #1c4f7a);
  color: white;
  padding: 14px 30px;
  text-decoration: none;
  margin-top: 25px;
  border-radius: 6px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  transition: all 0.2s ease;
}

.btn:hover {
  background: linear-gradient(135deg, #ff8a3d, #e56512);
  transform: translateY(-2px);
}

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

.btn-primary {
  background: linear-gradient(135deg, #ff8a3d, #e56512);
  color: white;
  font-size: 16px;
  padding: 16px 36px;
  box-shadow: 0 6px 14px rgba(255,138,61,0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #3dd2ff, #1c4f7a);
}

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

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

.features div {
  background: #161c24;
  padding: 28px;
  width: 260px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  border-top: 4px solid #3dd2ff;
}

.features div:nth-child(2) {
  border-top: 4px solid #ff8a3d;
}

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

.content {
  max-width: 820px;
  margin: auto;
  padding: 45px 20px;
  background: #161c24;
  border-radius: 6px;
}

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

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

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

.contact-email {
  font-size: 20px;
  font-weight: bold;
  margin: 20px 0;
  color: #3dd2ff;
}

.contact-item a {
  color: #3dd2ff;
}

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

.contact-buttons {
  margin-top: 25px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

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

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

.service-form label {
  font-weight: bold;
  margin-top: 8px;
}

.service-form input,
.service-form select,
.service-form textarea {
  padding: 10px 12px;
  border: 1px solid #2a3442;
  border-radius: 5px;
  font-size: 15px;
  background: #1a2029;
  color: #e6eaf0;
}

.service-form input:focus,
.service-form select:focus,
.service-form textarea:focus {
  outline: none;
  border-color: #3dd2ff;
  box-shadow: 0 0 4px rgba(61,210,255,0.5);
}

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

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

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

.promise {
  background: #131922;
  padding: 65px 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: #161c24;
  padding: 28px;
  border-radius: 8px;
  border-left: 4px solid #3dd2ff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.promise-grid div:nth-child(2n) {
  border-left: 4px solid #ff8a3d;
}

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

.cta {
  background: linear-gradient(135deg, #163d5f, #0f2b46);
  color: white;
  text-align: center;
  padding: 65px 20px;
}

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

footer {
  background: #0f2b46;
  color: white;
  text-align: center;
  padding: 18px;
  margin-top: 50px;
  font-size: 14px;
}

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

.popup-box {
  background: #161c24;
  max-width: 420px;
  padding: 30px 25px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.6);
}

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

.popup-box p {
  line-height: 1.6;
  margin-bottom: 18px;
}
