/* ============================================
   BRIGHTSTART PROPERTY MANAGEMENT
   Brand Colors & Global Styles
   ============================================ */

:root {
  --deep-navy: #0B1D3A;
  --steel-blue: #2E75B6;
  --warm-gold: #C9923E;
  --cloud-white: #F7F9FC;
  --crisp-white: #FFFFFF;
  --neutral-gray: #6B7280;
  --border-gray: #E5E7EB;
  --steel-blue-hover: #245f96;
  --font-heading: 'DM Serif Display', serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 17px;
}

/* Skip to main content link — visible only when focused via keyboard */
.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 1000;
  padding: 10px 18px;
  background: #0B1D3A;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
  outline: 2px solid #C9923E;
  outline-offset: 2px;
}

body {
  font-family: var(--font-body);
  color: var(--deep-navy);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

h1, h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
}

h3, h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 700;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background-color: var(--steel-blue);
  color: var(--crisp-white);
  border-color: var(--steel-blue);
}

.btn-primary:hover {
  background-color: var(--steel-blue-hover);
  border-color: var(--steel-blue-hover);
}

.btn-ghost-white {
  background-color: transparent;
  color: var(--crisp-white);
  border-color: var(--crisp-white);
}

.btn-ghost-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-ghost-blue {
  background-color: transparent;
  color: var(--steel-blue);
  border-color: var(--steel-blue);
}

.btn-ghost-blue:hover {
  background-color: rgba(46, 117, 182, 0.08);
}

.btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   SECTION UTILITIES
   ============================================ */

.section {
  padding: 64px 0;
}

.section-heading {
  font-size: 2.75rem;
  color: var(--deep-navy);
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--neutral-gray);
  text-align: center;
  max-width: 820px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.bg-cloud { background-color: var(--cloud-white); }
.bg-white { background-color: var(--crisp-white); }
.bg-navy  { background-color: var(--deep-navy); }

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 29, 58, 0.55);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  height: 72px;
}

.header-inner {
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
}

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

.footer-logo-img {
  height: 64px;
  width: auto;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-right: 140px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #FFFFFF;
  letter-spacing: 0.02em;
}

.nav-links a:hover,
.nav-links a.active {
  color: rgba(255, 255, 255, 0.75);
}

.header-cta {
  padding: 10px 22px;
  font-size: 0.9rem;
  background-color: #3380C6;
  color: #FFFFFF;
  border-color: #3380C6;
}

.header-cta:hover {
  background-color: #2B6EAC;
  border-color: #2B6EAC;
  color: #FFFFFF;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--crisp-white);
  margin: 6px 0;
  transition: all 0.3s ease;
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  background: var(--deep-navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/windwood-1.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--deep-navy);
  opacity: 0.55;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 960px;
}

.hero h1 {
  font-size: 4.25rem;
  color: var(--crisp-white);
  margin-bottom: 24px;
  white-space: nowrap;
}

.hero-sub {
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 780px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ============================================
   VIDEO SECTION
   ============================================ */

.video-section {
  padding: 64px 0;
  background: var(--cloud-white);
  text-align: center;
}

.video-wrapper {
  max-width: 1060px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  aspect-ratio: 16 / 9;
  background: var(--deep-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--crisp-white);
  font-size: 1.125rem;
}

.video-wrapper iframe,
.video-wrapper video {
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}

/* ============================================
   TRUST INDICATORS
   ============================================ */

.trust-bar {
  background: var(--cloud-white);
  padding: 28px 0;
  border-top: 1px solid var(--border-gray);
  border-bottom: 1px solid var(--border-gray);
}

.trust-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.trust-item i {
  font-size: 1.75rem;
  color: var(--steel-blue);
}

.trust-item span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--deep-navy);
  letter-spacing: 0.01em;
}

/* ============================================
   COMMUNITY BLOCKS
   ============================================ */

.community-block {
  margin-bottom: 16px;
}

.community-header {
  text-align: center;
  margin-bottom: 28px;
}

.community-name {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--deep-navy);
  margin-bottom: 8px;
}

.community-address {
  color: var(--neutral-gray);
  font-size: 1.05rem;
}

.community-address i {
  color: var(--steel-blue);
  margin-right: 6px;
}

.community-details {
  margin-top: 28px;
}

.community-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto 28px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--cloud-white);
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
}

.highlight-item i {
  color: var(--steel-blue);
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.community-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 12px;
}

.community-divider {
  border: none;
  border-top: 1px solid var(--border-gray);
  margin: 40px 0;
}

/* Lansing addresses */
.lansing-addresses {
  background: var(--cloud-white);
  border-radius: 12px;
  padding: 28px 32px;
  max-width: 600px;
  margin: 0 auto 36px;
}

.lansing-addresses h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--deep-navy);
}

.address-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.address-item {
  font-size: 0.95rem;
  color: #374151;
}

.address-item i {
  color: var(--steel-blue);
  margin-right: 8px;
  width: 16px;
  text-align: center;
}

/* ============================================
   IMAGE CAROUSEL
   ============================================ */

.carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  background: var(--deep-navy);
}

.carousel-track {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Show full image (no cropping) for slides where the photo aspect ratio
   doesn't match the 16:10 carousel frame */
.carousel-slide img[src*="additional-6"],
.carousel-slide img[src*="additional-9"],
.carousel-slide img[src*="additional-11"] {
  object-fit: contain;
  background: #0B1D3A;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(11, 29, 58, 0.6);
  color: var(--crisp-white);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background: rgba(11, 29, 58, 0.85);
}

.carousel-prev {
  left: 16px;
}

.carousel-next {
  right: 16px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
  z-index: 10;
}

.carousel-num {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--cloud-white);
  border: 1px solid var(--border-gray);
  color: var(--neutral-gray);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-num:hover {
  background: var(--steel-blue);
  color: var(--crisp-white);
  border-color: var(--steel-blue);
}

.carousel-num.active {
  background: var(--steel-blue);
  color: var(--crisp-white);
  border-color: var(--steel-blue);
}

/* ============================================
   FEATURED PROPERTY (legacy support)
   ============================================ */

.property-description {
  max-width: 1060px;
  margin: 0 auto 20px;
  text-align: justify;
  font-size: 1.1rem;
  color: #374151;
  line-height: 1.8;
}

.property-description + .property-description {
  margin-top: 0;
  margin-bottom: 32px;
}

/* Map */
.map-container {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  margin: 48px 0;
  border: 1px solid var(--border-gray);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================
   WHY BRIGHTSTART (Feature Cards)
   ============================================ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: var(--crisp-white);
  border: 1px solid var(--border-gray);
  border-radius: 12px;
  padding: 32px 28px;
  transition: box-shadow 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.feature-card i {
  font-size: 2.25rem;
  color: var(--steel-blue);
  margin-bottom: 16px;
  display: block;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--deep-navy);
}

.feature-card p {
  color: var(--neutral-gray);
  font-size: 1rem;
  line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--crisp-white);
  border-radius: 12px;
  padding: 32px 24px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  position: relative;
}

.testimonial-quote-mark {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--warm-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.testimonial-card blockquote {
  font-style: italic;
  color: #374151;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--deep-navy);
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
  background: var(--deep-navy);
  padding: 80px 24px;
  text-align: center;
}

.cta-banner h2 {
  font-size: 2.75rem;
  color: var(--crisp-white);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  margin-bottom: 32px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}

/* ============================================
   ABOUT SECTION (on home page)
   ============================================ */

.about-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1160px;
  margin: 0 auto;
}

.about-col-heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--deep-navy);
}

.about-col p {
  font-size: 1.1rem;
  color: #374151;
  line-height: 1.8;
}

.about-col p + p {
  margin-top: 14px;
}

.about-intro,
.about-mission {
  max-width: 900px;
  margin: 0 auto;
  text-align: justify;
}

.about-mission {
  margin-top: 48px;
}

.about-mission .about-col-heading {
  text-align: center;
}

.about-intro p,
.about-mission p {
  font-size: 1.1rem;
  color: #374151;
  line-height: 1.8;
}

.about-intro p + p,
.about-mission p + p {
  margin-top: 14px;
}

/* ============================================
   ABOUT PAGE (legacy support)
   ============================================ */

.page-banner {
  position: relative;
  height: 40vh;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--deep-navy);
  margin-top: 72px;
  overflow: hidden;
}

.page-banner-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/windwood-1.jpg');
  background-size: cover;
  background-position: center;
}

.page-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--deep-navy);
  opacity: 0.55;
}

.page-banner h1 {
  position: relative;
  z-index: 2;
  font-size: 3.25rem;
  color: var(--crisp-white);
}

.page-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  margin-top: 12px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.mission-section {
  padding: 64px 0;
  text-align: center;
}

.mission-section h2 {
  font-size: 2.25rem;
  margin-bottom: 24px;
}

.mission-section p {
  max-width: 860px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #374151;
  line-height: 1.8;
}

.mission-section p + p {
  margin-top: 16px;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.approach-card {
  text-align: center;
  padding: 24px;
}

.approach-card i {
  font-size: 2.5rem;
  color: var(--steel-blue);
  margin-bottom: 20px;
}

.approach-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.approach-card p {
  color: var(--neutral-gray);
  font-size: 1rem;
  line-height: 1.7;
}

.company-bg-section {
  padding: 48px 0 64px;
  text-align: center;
}

.company-bg-section p {
  max-width: 860px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: #374151;
  line-height: 1.8;
}

.company-bg-section p + p {
  margin-top: 16px;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form {
  background: var(--crisp-white);
  border: 1px solid var(--border-gray);
  border-radius: 12px;
  padding: 36px 32px;
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--deep-navy);
}

.form-group label .required {
  color: #EF4444;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-gray);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--deep-navy);
  background: var(--crisp-white);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--steel-blue);
  box-shadow: 0 0 0 3px rgba(46, 117, 182, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
}

.form-status {
  margin-top: 16px;
  padding: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  border-radius: 6px;
  text-align: center;
}

.form-status:empty {
  display: none;
}

.form-status-success {
  display: block;
  padding: 12px 16px;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-status-error {
  display: block;
  padding: 12px 16px;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.contact-info {
  padding: 0;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.info-item i {
  color: var(--steel-blue);
  font-size: 1.25rem;
  margin-top: 3px;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.info-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.info-item p {
  color: var(--neutral-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

.address-link {
  color: var(--neutral-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.address-link:hover {
  color: var(--steel-blue);
}

.contact-map {
  margin-top: 28px;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-gray);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

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

.site-footer {
  background: var(--deep-navy);
  padding: 56px 0 0;
  color: var(--crisp-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
}

.footer-brand .logo {
  font-size: 1.2rem;
  color: var(--crisp-white);
  margin-bottom: 12px;
}

.footer-brand .tagline {
  color: #9CA3AF;
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 14px;
}

.footer-brand .address {
  color: #9CA3AF;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #9CA3AF;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--crisp-white);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: #9CA3AF;
  font-size: 0.95rem;
}

.footer-contact-item i {
  color: var(--steel-blue);
  margin-top: 3px;
  width: 18px;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: justify;
}

.copyright {
  color: #9CA3AF;
  font-size: 0.85rem;
  max-width: 900px;
  margin: 0 auto 10px;
  text-align: justify;
}

.fair-housing {
  color: var(--neutral-gray);
  font-size: 0.8rem;
  line-height: 1.6;
  max-width: 800px;
}

.fair-housing-badge {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  max-width: 900px;
  margin: 8px auto 0;
  font-size: 0.8rem;
  color: #9CA3AF;
}

.fair-housing-badge i {
  font-size: 1.25rem;
}

/* ============================================
   RESPONSIVE — TABLET (769px–1024px)
   ============================================ */

@media (max-width: 1024px) {
  html {
    font-size: 16.5px;
  }

  .hero h1 {
    font-size: 3.25rem;
  }

  .hero-sub {
    font-size: 1.2rem;
  }

  .section-heading {
    font-size: 2.4rem;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .feature-card {
    padding: 28px 22px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .testimonial-card {
    padding: 28px 20px 22px;
  }

  .testimonial-card blockquote {
    font-size: 0.95rem;
  }

  .about-two-col {
    gap: 36px;
  }

  .community-highlights {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-banner {
    padding: 64px 24px;
  }

  .cta-banner h2 {
    font-size: 2.4rem;
  }
}

/* ============================================
   RESPONSIVE — SMALL TABLET (max-width: 860px)
   ============================================ */

@media (max-width: 860px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .testimonial-card blockquote {
    font-size: 1rem;
  }
}

/* ============================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ============================================ */

@media (max-width: 768px) {
  html {
    font-size: 16px;
  }

  .section {
    padding: 48px 0;
  }

  .section-heading {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 28px;
  }

  .hero {
    min-height: 85vh;
    padding: 100px 20px 60px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-sub {
    font-size: 1.1rem;
    margin-bottom: 32px;
  }

  /* Header mobile */
  .nav-links,
  .header-cta {
    display: none;
  }

  .nav-right {
    margin-right: 0;
  }

  .menu-toggle {
    display: block;
  }

  /* Grids */
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .feature-card {
    padding: 28px 24px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-two-col {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .trust-grid {
    gap: 20px;
  }

  .trust-item span {
    font-size: 0.9rem;
  }

  .cta-banner {
    padding: 56px 24px;
  }

  .cta-banner h2 {
    font-size: 2rem;
  }

  .cta-banner p {
    font-size: 1.1rem;
  }

  .community-highlights {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .community-name {
    font-size: 1.75rem;
  }

  .community-divider {
    margin: 32px 0;
  }

  .property-description {
    font-size: 1.05rem;
    line-height: 1.75;
  }

  .page-banner {
    height: 35vh;
    min-height: 240px;
  }

  .page-banner h1 {
    font-size: 2.25rem;
  }

  .page-banner p {
    font-size: 1.05rem;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .carousel-prev {
    left: 10px;
  }

  .carousel-next {
    right: 10px;
  }

  .about-col-heading {
    font-size: 1.4rem;
  }

  .about-col p {
    font-size: 1.05rem;
  }

  .contact-form {
    padding: 28px 24px;
  }

  .contact-form h3,
  .contact-info h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ============================================ */

@media (max-width: 480px) {
  html {
    font-size: 15.5px;
  }

  .container {
    padding: 0 18px;
  }

  .section {
    padding: 40px 0;
  }

  .hero {
    min-height: 80vh;
    padding: 90px 18px 48px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-sub {
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 28px;
  }

  .section-heading {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 1.05rem;
    margin-bottom: 24px;
  }

  .btn-group {
    flex-direction: column;
    align-items: center;
  }

  .btn-group .btn {
    width: 100%;
    max-width: 300px;
  }

  .community-highlights {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .highlight-item {
    padding: 10px 14px;
    font-size: 0.95rem;
  }

  .trust-grid {
    flex-direction: column;
    gap: 16px;
  }

  .trust-bar {
    padding: 24px 0;
  }

  .community-cta {
    flex-direction: column;
    align-items: center;
  }

  .community-cta .btn {
    width: 100%;
    max-width: 300px;
  }

  .community-name {
    font-size: 1.5rem;
  }

  .community-address {
    font-size: 0.95rem;
  }

  .property-description {
    font-size: 1rem;
    line-height: 1.7;
  }

  .cta-banner {
    padding: 48px 18px;
  }

  .cta-banner h2 {
    font-size: 1.75rem;
  }

  .cta-banner p {
    font-size: 1rem;
  }

  .feature-card {
    padding: 24px 20px;
  }

  .feature-card i {
    font-size: 2rem;
    margin-bottom: 12px;
  }

  .feature-card h3 {
    font-size: 1.1rem;
  }

  .testimonial-card {
    padding: 24px 20px 20px;
  }

  .testimonial-quote-mark {
    font-size: 2.75rem;
  }

  .page-banner {
    height: 30vh;
    min-height: 220px;
  }

  .page-banner h1 {
    font-size: 1.85rem;
  }

  .page-banner p {
    font-size: 1rem;
    padding: 0 12px;
  }

  .footer-grid {
    gap: 24px;
  }

  .site-footer {
    padding: 40px 0 0;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }

  .carousel-prev {
    left: 8px;
  }

  .carousel-next {
    right: 8px;
  }

  .carousel-num {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }
}

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--crisp-white);
  z-index: 999;
  padding: 32px 24px;
  flex-direction: column;
  gap: 0;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--deep-navy);
  border-bottom: 1px solid var(--border-gray);
}

.mobile-menu a:last-of-type {
  border-bottom: none;
}

.mobile-menu .btn {
  margin-top: 24px;
  text-align: center;
}

/* Scroll offset for anchor links */
[id] {
  scroll-margin-top: 80px;
}
