/* ====================================================
   MY LOCAL MAILBOX — Shared Stylesheet
   Colors: Blue #1875F0 / Green #00B140 / Dark #0F1828
   Fonts: Outfit (headings) + DM Sans (body)
   ==================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,400&display=swap');

/* ── Reset & Variables ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:       #1875F0;
  --blue-dark:  #1260C7;
  --blue-light: #E8F1FE;
  --green:      #00B140;
  --green-dark: #008F33;
  --green-light:#E6F7EC;
  --dark:       #0F1828;
  --mid:        #374151;
  --gray:       #6B7280;
  --light:      #F3F7FF;
  --white:      #FFFFFF;
  --border:     #E2E8F4;
  --shadow:     0 4px 24px rgba(24,117,240,.10);
  --shadow-lg:  0 12px 48px rgba(24,117,240,.16);
  --radius:     12px;
  --radius-lg:  20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--mid);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }

h1,h2,h3,h4 {
  font-family: 'Outfit', sans-serif;
  color: var(--dark);
  line-height: 1.2;
}

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

.section { padding: 80px 0; }
.section-sm { padding: 52px 0; }

.section-label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 14px;
}
.section-label.green {
  color: var(--green-dark);
  background: var(--green-light);
}

.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 18px;
  color: var(--gray);
  max-width: 560px;
}
.center { text-align: center; }
.center .section-sub { margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: var(--radius);
  transition: all .2s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-green {
  background: var(--green);
  color: var(--white);
}
.btn-green:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,177,64,.25); }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover { background: var(--blue-light); }

.btn-lg { font-size: 17px; padding: 16px 32px; }

/* ── Nav ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo img { height: 52px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--mid);
  padding: 7px 13px;
  border-radius: 8px;
  transition: all .18s;
}
.nav-links a:hover { background: var(--light); color: var(--blue); }
.nav-links a.active { color: var(--blue); font-weight: 600; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-login {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--blue);
  padding: 8px 16px;
  border-radius: 8px;
  border: 1.5px solid var(--blue);
  transition: all .18s;
}
.nav-login:hover { background: var(--blue-light); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .25s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  padding: 10px 14px;
  border-radius: 8px;
  transition: all .15s;
}
.mobile-menu a:hover { background: var(--light); color: var(--blue); }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, #F0F6FF 0%, #EAF7EF 100%);
  padding: 88px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(24,117,240,.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero-text h1 .highlight { color: var(--blue); }
.hero-text p {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.hero-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.hero-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--light);
  border-radius: 10px;
  padding: 12px 16px;
}
.hero-pill-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.hero-pill-icon.blue { background: var(--blue-light); }
.hero-pill-icon.green { background: var(--green-light); }
.hero-pill span {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
}

/* ── Feature Strips / Cards ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all .2s;
}
.feature-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.feat-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}
.feat-icon.blue { background: var(--blue-light); }
.feat-icon.green { background: var(--green-light); }

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ── Steps ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps-grid::after {
  content: '';
  position: absolute;
  top: 36px; left: calc(16.6% + 16px); right: calc(16.6% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue-light), var(--green-light));
  z-index: 0;
}
.step-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all .2s;
}
.step-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.step-card:nth-child(2) .step-num { background: var(--green); }
.step-card:nth-child(3) .step-num {
  background: linear-gradient(135deg, var(--blue), var(--green));
}
.step-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ── Checklist ── */
.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
  list-style: none;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
}
.check-list li::before {
  content: '✓';
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ── CTA Band ── */
.cta-band {
  background: linear-gradient(135deg, var(--blue) 0%, #0E53C7 100%);
  padding: 64px 0;
  text-align: center;
  color: var(--white);
}
.cta-band h2 {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-band p { font-size: 18px; opacity: .88; margin-bottom: 32px; }
.btn-white {
  background: var(--white);
  color: var(--blue);
  font-weight: 700;
}
.btn-white:hover { background: #E8F1FE; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(0,0,0,.15); }

/* ── Testimonial ── */
.testimonial {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  position: relative;
}
.testimonial::before {
  content: '"';
  font-family: 'Outfit', sans-serif;
  font-size: 100px;
  line-height: 1;
  color: var(--blue);
  opacity: .15;
  position: absolute;
  top: 10px; left: 24px;
}
.testimonial p {
  font-size: 17px;
  font-style: italic;
  color: var(--mid);
  margin-bottom: 14px;
  padding-left: 24px;
}
.testimonial cite {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  padding-left: 24px;
  font-style: normal;
}

/* ── Contact Cards ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.info-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.info-row:last-child { border-bottom: none; }
.info-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.info-icon.green { background: var(--green-light); color: var(--green-dark); }
.info-text strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--dark);
  font-size: 14px;
  margin-bottom: 3px;
}
.info-text span { font-size: 15px; color: var(--mid); line-height: 1.5; }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 10px; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td {
  padding: 9px 0;
  font-size: 14px;
  color: var(--mid);
}
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--dark); }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  height: 300px;
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.stat-box {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}
.stat-box .num {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--blue);
  display: block;
}
.stat-box .num.green { color: var(--green-dark); }
.stat-box span:last-child { font-size: 13px; color: var(--gray); }
.about-visual {
  background: linear-gradient(135deg, var(--blue-light), var(--green-light));
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.av-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.av-item .av-icon { font-size: 22px; }

/* ── Pricing Page ── */
.pricing-hero {
  background: linear-gradient(135deg, #F0F6FF 0%, #EAF7EF 100%);
  padding: 80px 0;
  text-align: center;
}
.pricing-box {
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.pricing-box h2 { font-size: 28px; margin-bottom: 12px; }
.pricing-box p { color: var(--gray); margin-bottom: 28px; font-size: 16px; }
.pricing-note {
  font-size: 13px;
  color: var(--gray);
  margin-top: 16px;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--blue) 0%, #0E53C7 100%);
  padding: 56px 0;
  text-align: center;
  color: var(--white);
}
.page-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.page-hero p { font-size: 18px; opacity: .85; }

/* ── Footer ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  padding: 52px 0 24px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand {
  flex: 0 0 260px;
}
.footer-brand .logo-wrap {
  display: inline-block;
  background: white;
  padding: 8px 16px;
  border-radius: 10px;
  margin-bottom: 14px;
}
.footer-brand .logo-wrap img { height: 38px; width: auto; display: block; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }


.footer-testimonial {
  flex: 1 1 auto;
  text-align: center;
  padding: 0 20px;
}
.footer-quote {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  line-height: 0;
  vertical-align: -16px;
  color: var(--blue);
  opacity: .5;
  margin-right: 4px;
}
.footer-testimonial blockquote {
  font-size: 14px;
  font-style: italic;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin-bottom: 10px;
  position: relative;
}
.footer-testimonial cite {
  font-size: 13px;
  font-weight: 600;
  font-style: normal;
  color: var(--blue);
}

.footer-col { flex: 0 0 auto; text-align: left; }
.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-size: 14px; transition: color .15s; }
.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}
.footer-bottom a:hover { color: var(--white); }
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: background .15s;
}
.footer-social a:hover { background: var(--blue); }

/* ── Form (contact page) ── */
.jotform-wrap {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px;
  overflow: hidden;
}
.jotform-wrap iframe { display: block; width: 100%; border: none; }

/* ── Divider ── */
.divider { height: 1px; background: var(--border); margin: 0; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner         { grid-template-columns: 1fr; gap: 40px; }
  .hero-card          { display: none; }
  .features-grid      { grid-template-columns: 1fr 1fr; }
  .steps-grid         { grid-template-columns: 1fr; }
  .steps-grid::after  { display: none; }
  .check-list         { grid-template-columns: 1fr; }
  .contact-grid       { grid-template-columns: 1fr; }
  .about-grid         { grid-template-columns: 1fr; }
  .footer-inner       { flex-wrap: wrap; gap: 32px; }
  .footer-brand       { flex: 0 0 100%; max-width: 100%; }
}

@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger           { display: flex; }
  .features-grid       { grid-template-columns: 1fr; }
  .about-stats         { grid-template-columns: 1fr 1fr; }
  .footer-inner        { flex-direction: column; }
  .footer-col          { margin-left: 0; }
  .footer-bottom       { flex-direction: column; gap: 14px; text-align: center; }
  .hero-btns           { flex-direction: column; }
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .55s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .35s; }
