/* Palm Beach Computer Care — site stylesheet */

:root {
  --navy: #16334f;
  --navy-dark: #0e2438;
  --teal: #1e7ba6;
  --teal-light: #eaf3fa;
  --text: #222c33;
  --muted: #5b6b76;
  --border: #dbe6ed;
  --white: #ffffff;
  --max-width: 1100px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

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

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header.site-header {
  background: var(--navy);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 10px;
}

.brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.2px;
}

.brand span { color: #7fc4e0; }

nav.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
}

nav.main-nav a {
  color: #dceaf3;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 6px 2px;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--white);
  text-decoration: underline;
}

.header-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 9px 16px;
  border-radius: 6px;
  font-weight: 600;
  white-space: nowrap;
}
.header-cta:hover { background: #176a8f; text-decoration: none; }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 64px 20px 56px;
}

.hero .wrap { display: block; }

.hero h1 {
  font-size: 2.3rem;
  line-height: 1.25;
  margin: 0 0 16px;
  max-width: 760px;
}

.hero p.lead {
  font-size: 1.15rem;
  color: #cfe3ee;
  max-width: 640px;
  margin: 0 0 28px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
}

.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: #176a8f; text-decoration: none; }

.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-secondary:hover { border-color: var(--white); text-decoration: none; }

/* Sections */
section { padding: 56px 0; }
section.alt { background: var(--teal-light); }

h2 {
  font-size: 1.7rem;
  margin: 0 0 10px;
  color: var(--navy);
}

h3 { color: var(--navy); margin: 0 0 8px; }

.section-intro {
  color: var(--muted);
  max-width: 700px;
  margin-bottom: 32px;
  font-size: 1.05rem;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
}

.card h3 { font-size: 1.1rem; }
.card p { color: var(--muted); margin: 0; font-size: 0.97rem; }

.card .price {
  display: inline-block;
  margin-top: 10px;
  font-weight: 700;
  color: var(--teal);
}

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 760px) {
  .two-col { grid-template-columns: 1fr; }
}

/* Lists */
ul.check-list { list-style: none; padding: 0; margin: 0; }
ul.check-list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 10px;
  color: var(--text);
}
ul.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

table.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
}
table.pricing-table th, table.pricing-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}
table.pricing-table th { background: var(--teal-light); color: var(--navy); }

/* CTA band */
.cta-band {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 48px 20px;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: #cfe3ee; max-width: 600px; margin: 0 auto 24px; }

/* Footer */
footer.site-footer {
  background: var(--navy-dark);
  color: #b9cdda;
  padding: 36px 20px 28px;
  font-size: 0.92rem;
}
footer.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
footer.site-footer a { color: #cfe3ee; }
footer.site-footer .foot-col h4 {
  color: var(--white);
  margin: 0 0 10px;
  font-size: 0.95rem;
}
footer.site-footer .foot-col p, footer.site-footer .foot-col li { margin: 0 0 6px; }
footer.site-footer ul { list-style: none; padding: 0; }
.foot-bottom {
  text-align: center;
  color: #7c93a3;
  margin-top: 24px;
  font-size: 0.85rem;
}

/* Breadcrumb / page header */
.page-header {
  background: var(--teal-light);
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.page-header h1 { color: var(--navy); margin: 0 0 8px; font-size: 2rem; }
.page-header p { color: var(--muted); margin: 0; max-width: 700px; }

/* Quote / testimonial */
blockquote.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  padding: 20px 24px;
  margin: 0;
  font-size: 1.02rem;
  color: var(--text);
}
blockquote.testimonial footer {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--muted);
  background: none;
  padding: 0;
}

/* Contact form */
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-weight: 600; margin-bottom: 6px; color: var(--navy); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}

.note-box {
  background: #fff8e6;
  border: 1px solid #f0d98c;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 0.92rem;
  color: #6b5a16;
  margin: 18px 0;
}

@media (max-width: 600px) {
  .hero h1 { font-size: 1.8rem; }
  section { padding: 40px 0; }
}
