/* SunriseLands.com landing page - matches real site's blue/white palette */
/* Responsive, mobile-first, with distinct visual sections */

:root {
  --blue: #6d9bd6;
  --blue-dark: #4d7bb5;
  --navy-text: #222b33;
  --orange-cta: #e0642a;
  --orange-cta-dark: #c44f1c;
  --border: #e2e6ea;
  --gray-text: #555;
  --cream: #f7f5f0;
  --max-width: 1100px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: var(--navy-text);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--blue-dark); }

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

/* Header */
.top-bar {
  background: #fff;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.top-bar-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 20px;
}
.logo-block { display: flex; align-items: center; gap: 12px; min-width: 0; }
.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(160deg, #cfe6f5 0%, #f4d98a 55%, #7ba85c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; min-width: 0; }
.logo-name { font-size: clamp(18px, 2.4vw, 24px); font-weight: 700; color: var(--blue); white-space: nowrap; }
.logo-tag { font-size: 12px; color: var(--gray-text); white-space: nowrap; }
.call-block { text-align: right; flex-shrink: 0; }
.call-label { display: block; font-size: 13px; color: var(--gray-text); }
.call-number { font-size: clamp(17px, 2vw, 21px); font-weight: 700; color: var(--navy-text); text-decoration: none; white-space: nowrap; }

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(180deg, #3f6a9c 0%, #6d9bd6 35%, #cfe0ee 65%, #f3d9a8 100%);
  /* Replace the gradient above with your own photo:
     background-image: url('hero-field.jpg');
     background-size: cover;
     background-position: center; */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(40px, 8vw, 90px) 24px clamp(56px, 9vw, 96px);
}
.hero-inner { width: 100%; max-width: var(--max-width); display: flex; justify-content: center; }
.hero-overlay {
  background: rgba(20, 24, 28, 0.75);
  color: #fff;
  width: 100%;
  max-width: 100%;
  padding: clamp(18px, 3vw, 28px) clamp(24px, 5vw, 48px);
  border-radius: 6px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 32px;
}
.hero-text-block { flex: 1 1 380px; min-width: 0; }
.hero-overlay h1 { font-size: clamp(22px, 3vw, 30px); line-height: 1.25; margin: 0 0 8px; }
.hero-sub { font-size: clamp(14px, 1.6vw, 16px); margin: 6px 0; }
.hero-highlight { font-size: clamp(16px, 2vw, 19px); margin: 10px 0 4px; }
.hero-note { font-size: 14px; color: #dfe3e6; margin: 0; }
.hero-cta-block { flex: 0 0 auto; }

/* Scroll cue */
.scroll-cue {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--navy-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  background: rgba(255,255,255,0.55);
  padding: 8px 18px;
  border-radius: 20px;
  animation: bob 2s ease-in-out infinite;
}
.scroll-cue:hover { text-decoration: none; }
.scroll-cue-arrow { font-size: 20px; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* Call to action buttons */
.btn-call {
  display: inline-block;
  background: var(--orange-cta);
  color: #fff;
  font-weight: 700;
  font-size: clamp(15px, 1.8vw, 17px);
  padding: 14px 26px;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
}
.btn-call:hover { background: var(--orange-cta-dark); text-decoration: none; }
.btn-call-large { font-size: clamp(17px, 2.4vw, 22px); padding: 16px 32px; }

/* Trust bar */
.trust-bar {
  background: var(--navy-text);
  padding: 26px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 6px; color: #fff; }
.trust-icon { font-size: 26px; }
.trust-label { font-size: 13px; font-weight: 600; color: #dfe3e6; }

/* Content sections */
.content-section { padding: clamp(48px, 7vw, 80px) 0; }
.section-title { font-size: clamp(24px, 3.2vw, 30px); color: var(--navy-text); line-height: 1.3; max-width: 780px; }
.section-title.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-sub { font-size: clamp(15px, 1.8vw, 17px); color: var(--gray-text); max-width: 680px; margin-top: 10px; }
.section-sub.center { margin-left: auto; margin-right: auto; text-align: center; }

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.benefit-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.benefit-icon { font-size: 24px; flex-shrink: 0; }
.benefit-card p { margin: 0; font-size: 15px; }

/* Steps section */
.steps-section {
  background: var(--cream);
  padding: clamp(48px, 7vw, 80px) 0;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 22px;
  text-align: center;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-dark);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 14px;
}
.step h3 { margin: 0 0 8px; font-size: 18px; }
.step p { margin: 0; font-size: 14px; color: var(--gray-text); }

/* Final CTA */
.final-cta {
  background: var(--blue-dark);
  color: #fff;
  padding: clamp(48px, 7vw, 70px) 0;
  text-align: center;
}
.final-cta h2 { font-size: clamp(24px, 3vw, 30px); margin: 0 0 10px; }
.final-cta p { font-size: clamp(15px, 1.8vw, 17px); margin: 0 0 26px; color: #eaf0f7; }

/* Footer */
.site-footer { background: var(--navy-text); color: #cfd6dc; padding: 30px 24px; text-align: center; }
.footer-inner { max-width: var(--max-width); margin: 0 auto; }
.footer-blurb { max-width: 700px; margin: 0 auto 14px; font-size: 14px; }
.footer-phone { font-size: 16px; margin-bottom: 6px; }
.footer-phone a { color: #fff; font-weight: 700; }
.footer-copy { font-size: 13px; color: #8b98a5; }

/* Breakpoints */
@media (max-width: 900px) {
  .hero-overlay { text-align: center; justify-content: center; }
  .hero-text-block { flex: 1 1 100%; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .top-bar-inner { justify-content: center; text-align: center; }
  .logo-block { justify-content: center; }
  .call-block { text-align: center; width: 100%; }
  .hero { padding: 28px 16px 44px; }
  .hero-overlay { padding: 20px; }
  .wrap { padding: 0 16px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 22px 12px; }
}
