/* =============================================
   GET MY TECH HELP — Main Stylesheet
   Colors: Blue #007eff | Yellow #f5ee15
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:       #007eff;
  --blue-dark:  #0062cc;
  --blue-deep:  #004fa3;
  --yellow:     #f5ee15;
  --yellow-dk:  #d4cc00;
  --white:      #ffffff;
  --light:      #e8f4ff;
  --text:       #1a1a2e;
  --muted:      #4a5568;
  --border:     #b3d9ff;
  --radius:     10px;
}

body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

/* ── CONTAINER ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAV ── */
nav {
  background: var(--blue);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
}
.nav-logo {
  font-size: 1.25em;
  font-weight: bold;
  color: var(--yellow);
  letter-spacing: 0.5px;
  text-decoration: none;
}
.nav-logo:hover { text-decoration: none; opacity: 0.9; }
.nav-links { display: flex; gap: 8px; list-style: none; }
.nav-links a {
  color: var(--white);
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 0.95em;
  font-weight: bold;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--yellow);
  color: var(--blue-deep);
}

/* ── HERO ── */
.hero {
  background: var(--blue);
  color: var(--white);
  padding: 100px 24px;
  text-align: center;
}
.hero h1 {
  font-size: 3em;
  color: var(--yellow);
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.hero p {
  font-size: 1.35em;
  color: var(--white);
  max-width: 640px;
  margin: 0 auto 36px auto;
  font-style: italic;
}
.btn {
  display: inline-block;
  background: var(--yellow);
  color: var(--blue-deep);
  font-weight: bold;
  padding: 14px 36px;
  border-radius: 32px;
  font-size: 1.05em;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  border: none;
  cursor: pointer;
}
.btn:hover {
  background: var(--yellow-dk);
  transform: translateY(-1px);
  text-decoration: none;
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--yellow);
  color: var(--yellow);
  margin-left: 12px;
}
.btn-outline:hover {
  background: var(--yellow);
  color: var(--blue-deep);
}

/* ── SECTION WRAPPERS ── */
.section {
  padding: 72px 24px;
}
.section-alt {
  background: var(--light);
}
.section-title {
  font-size: 2em;
  color: var(--blue);
  text-align: center;
  margin-bottom: 12px;
}
.section-subtitle {
  text-align: center;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 48px auto;
  font-size: 1.05em;
}
.section-intro {
  max-width: 780px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05em;
}

/* ── SERVICE GRID ── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-top: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  box-shadow: 0 6px 24px rgba(0,126,255,0.12);
  transform: translateY(-3px);
}
.service-card .icon { font-size: 2em; margin-bottom: 12px; }
.service-card h3 {
  color: var(--blue-deep);
  font-size: 1.05em;
  margin-bottom: 10px;
}
.service-card p { color: var(--muted); font-size: 0.95em; margin: 0; }

/* ── WHY LIST ── */
.why-list { max-width: 780px; margin: 40px auto 0 auto; list-style: none; }
.why-list li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.why-list li:last-child { border-bottom: none; }
.why-icon {
  font-size: 1.4em;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-list strong { color: var(--blue-deep); display: block; margin-bottom: 4px; }
.why-list span { color: var(--muted); font-size: 0.97em; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--blue);
  color: var(--white);
  text-align: center;
  padding: 72px 24px;
}
.cta-band h2 { font-size: 2em; color: var(--yellow); margin-bottom: 12px; }
.cta-band p { color: #cce6ff; font-size: 1.1em; margin-bottom: 32px; max-width: 580px; margin-left: auto; margin-right: auto; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--blue);
  color: var(--white);
  padding: 64px 24px;
  text-align: center;
}
.page-hero h1 { font-size: 2.4em; color: var(--yellow); margin-bottom: 10px; }
.page-hero p { color: #cce6ff; font-size: 1.1em; max-width: 600px; margin: 0 auto; }

/* ── ABOUT PAGE ── */
.about-section { max-width: 820px; margin: 0 auto; }
.about-section h2 {
  font-size: 1.5em;
  color: var(--blue);
  margin: 40px 0 14px 0;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--yellow);
  display: inline-block;
}
.about-section p { color: var(--muted); margin-bottom: 18px; }

/* ── CONTACT PAGE ── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}
.contact-info h2 { color: var(--blue); font-size: 1.4em; margin-bottom: 16px; }
.contact-info p { color: var(--muted); margin-bottom: 20px; }
.contact-info a { color: var(--blue); font-weight: bold; }
.contact-badge {
  background: var(--light);
  border: 1.5px solid var(--border);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 24px;
}
.contact-badge p { margin: 0; color: var(--muted); font-size: 0.95em; }

/* ── FORM ── */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-weight: bold;
  font-size: 0.9em;
  color: var(--blue-deep);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 1em;
  font-family: Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,126,255,0.15);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.optional-label { color: var(--muted); font-weight: normal; font-size: 0.85em; }
.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; text-align: center; font-size: 1.05em; padding: 14px; }

/* ── FOOTER ── */
footer {
  background: var(--blue-deep);
  color: #cce6ff;
  text-align: center;
  padding: 36px 24px;
  font-size: 0.9em;
}
footer a { color: var(--yellow); }
footer a:hover { text-decoration: underline; }
.footer-name { color: var(--yellow); font-weight: bold; font-size: 1.05em; margin-bottom: 6px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero h1 { font-size: 2em; }
  .hero p { font-size: 1.1em; }
  .service-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { gap: 2px; }
  .nav-links a { padding: 8px 10px; font-size: 0.85em; }
  .section-title { font-size: 1.6em; }
  .page-hero h1 { font-size: 1.8em; }
}
