/* =====================================================
   Alawnso Services — Lawn & Landscaping
   Base: Lawson Group contractor template
   Colors: Navy #1B3A5C | Teal #4A8490 | Orange #E07B2A
   ===================================================== */

:root {
  --brand-primary:   #1B3A5C;
  --brand-secondary: #4A8490;
  --brand-accent:    #E07B2A;
  --brand-dark:      #132A43;
  --text-dark:       #1A1A1A;
  --text-mid:        #444;
  --text-light:      #666;
  --bg-light:        #F7F8FA;
  --bg-pale:         #EEF4F7;
  --white:           #FFFFFF;
  --border:          #DDE3E8;
  --radius:          6px;
  --shadow:          0 2px 12px rgba(0,0,0,0.10);
  --shadow-lg:       0 6px 30px rgba(0,0,0,0.14);
  --font-sans:       'Inter', system-ui, -apple-system, sans-serif;
  --font-display:    'Montserrat', 'Inter', sans-serif;
  --transition:      0.2s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); color: var(--text-dark); background: var(--white); line-height: 1.6; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--brand-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--brand-primary); }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1rem; }
p { margin-bottom: 1rem; }
.text-center { text-align: center; }

/* --- Layout --- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.25rem; }
section { padding: 5rem 0; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 0.75rem;
}
.section-title { margin-bottom: 1rem; }
.section-subtitle { font-size: 1.1rem; color: var(--text-mid); margin-bottom: 2.5rem; max-width: 640px; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary { background: var(--brand-accent); color: var(--white); }
.btn-primary:hover { background: #c96d22; color: var(--white); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--brand-primary); }
.btn-dark { background: var(--brand-primary); color: var(--white); }
.btn-dark:hover { background: var(--brand-dark); color: var(--white); }

/* --- Top Bar --- */
.topbar {
  background: var(--brand-dark);
  color: var(--white);
  font-size: 0.82rem;
  padding: 0.45rem 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.topbar a { color: var(--white); }
.topbar a:hover { color: var(--brand-accent); }

/* --- Nav --- */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--brand-primary);
  text-decoration: none;
}
.nav-logo span { color: var(--brand-accent); }
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--brand-accent); }
.nav-cta { margin-left: 1rem; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  margin: 5px 0;
  border-radius: 2px;
  transition: all var(--transition);
}

/* --- Hero (Split) --- */
.hero {
  background: var(--brand-primary);
  color: var(--white);
  min-height: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.hero-content {
  padding: 5rem 3rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--brand-accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 3px;
  margin-bottom: 1.25rem;
}
.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.82); margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image {
  background: var(--brand-secondary);
  overflow: hidden;
  min-height: 400px;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.hero-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-secondary), var(--brand-dark));
  color: rgba(255,255,255,0.5);
  font-size: 4rem;
}

/* --- Trust Bar --- */
.trust-bar {
  background: var(--brand-accent);
  color: var(--white);
  padding: 1.5rem 0;
}
.trust-items {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  text-align: center;
  font-weight: 700;
  font-size: 0.92rem;
}
.trust-item strong { display: block; font-size: 1.5rem; margin-bottom: 0.15rem; }

/* --- Services Grid --- */
.services { background: var(--bg-light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--brand-accent);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-icon { font-size: 2.25rem; margin-bottom: 1rem; }
.service-card h3 { color: var(--brand-primary); margin-bottom: 0.5rem; }
.service-card p { color: var(--text-mid); font-size: 0.95rem; margin-bottom: 0; }

/* --- Before/After / Work Showcase --- */
.work-showcase { background: var(--white); }
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}
.showcase-panel {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-pale);
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.showcase-panel .panel-img {
  flex: 1;
  min-height: 200px;
  background: linear-gradient(135deg, #2d6e2f, #3d8c40);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}
.showcase-panel .panel-label {
  padding: 1rem 1.25rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brand-primary);
  background: var(--bg-pale);
}
.showcase-panel .panel-label span { color: var(--text-light); font-weight: 400; display: block; font-size: 0.85rem; }

/* --- Service Area --- */
.service-area { background: var(--brand-primary); color: var(--white); }
.service-area .section-title { color: var(--white); }
.service-area .section-subtitle { color: rgba(255,255,255,0.75); }
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
  align-items: start;
}
.area-list { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.area-pill {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  border-radius: 99px;
  padding: 0.35rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
}
img.area-map { display: block; width: 100%; height: 260px; object-fit: cover; border-radius: var(--radius); }
.area-map {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,0.4);
}

/* --- Quote CTA Banner --- */
.cta-banner { background: var(--brand-accent); color: var(--white); padding: 4rem 0; text-align: center; }
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.88); font-size: 1.05rem; margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* --- About Teaser --- */
.about-teaser { background: var(--bg-light); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-visual {
  background: linear-gradient(135deg, var(--brand-secondary), var(--brand-primary));
  border-radius: var(--radius);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(255,255,255,0.4);
}
.about-text .section-title { margin-bottom: 1rem; }
.about-text p { color: var(--text-mid); }
.about-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}
.badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-primary);
}

/* --- Testimonials --- */
.testimonials { background: var(--white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.review-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 1.75rem;
  border-left: 4px solid var(--brand-accent);
}
.stars { color: #F5A623; font-size: 1rem; margin-bottom: 0.75rem; letter-spacing: 2px; }
.review-card blockquote {
  color: var(--text-mid);
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.reviewer { font-weight: 700; font-size: 0.9rem; color: var(--brand-primary); }
.reviewer span { font-weight: 400; color: var(--text-light); }

/* --- Contact Section --- */
.contact-section { background: var(--brand-dark); color: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { color: var(--white); margin-bottom: 1rem; }
.contact-info p { color: rgba(255,255,255,0.75); }
.contact-details { margin-top: 2rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.contact-detail-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-detail-text strong { display: block; color: var(--white); font-size: 0.9rem; margin-bottom: 0.1rem; }
.contact-detail-text a, .contact-detail-text span { color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.contact-detail-text a:hover { color: var(--brand-accent); }
/* Form */
.contact-form { background: rgba(255,255,255,0.06); border-radius: var(--radius); padding: 2.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.85); margin-bottom: 0.4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  transition: border-color var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-accent);
}
.form-group select option { background: var(--brand-dark); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 0.75rem; }
.form-success {
  display: none;
  background: rgba(74, 132, 144, 0.3);
  border: 1px solid var(--brand-secondary);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  color: var(--white);
  margin-top: 1rem;
}

/* --- Footer --- */
.site-footer {
  background: #0E2136;
  color: rgba(255,255,255,0.6);
  padding: 3rem 0 1.5rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .nav-logo { color: var(--white); display: block; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.5; }
.footer-col h4 { color: var(--white); margin-bottom: 1rem; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-col ul li a:hover { color: var(--brand-accent); }
.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.82rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--white); }

/* --- Stock Photo Replacements --- */
.service-card.has-photo { padding: 0; overflow: hidden; }
.service-card.has-photo .service-card-body { padding: 1.75rem; }
.service-photo { width: 100%; height: 180px; object-fit: cover; display: block; }
.panel-photo { width: 100%; height: 240px; object-fit: cover; display: block; }
img.about-visual { background: var(--bg-pale); display: block; width: 100%; object-fit: cover; border-radius: var(--radius); min-height: 340px; }

/* --- Responsive --- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image { min-height: 260px; }
  .hero-content { padding: 3.5rem 1.5rem; }
  .about-grid,
  .contact-grid,
  .area-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .showcase-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  section { padding: 3.5rem 0; }
  .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 1.5rem; gap: 1.25rem; box-shadow: var(--shadow-lg); z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .hero-actions { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .trust-items { gap: 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}
