/* S and S Land Solutions - Custom Styles */
/* Colors: Dark Green #1e4d2b, Amber #d4850a, Dark #1a1a19, Cream #faf7f2 */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #1e4d2b;
  --green-dark: #163d22;
  --green-darkest: #111d15;
  --amber: #d4850a;
  --amber-dark: #be7100;
  --cream: #faf7f2;
  --cream-alt: #f8f8f7;
  --dark: #1a1a19;
  --text-dark: #34322d;
  --text-mid: #52736a;
}

body {
  font-family: 'Open Sans', sans-serif;
  background: #fff;
  color: var(--text-dark);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', sans-serif;
  line-height: 1.2;
}

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

/* ─── NAVIGATION ─── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26,26,25,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo-mark {
  width: 44px;
  height: 44px;
  background: var(--green);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--amber);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.nav-logo-text {
  line-height: 1.1;
}

.nav-logo-name {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  display: block;
}

.nav-logo-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
}

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

.nav-links a {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 0.875rem;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-links a.active { color: var(--amber); }

.nav-cta {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--amber);
  color: #110904;
  padding: 0.625rem 1.25rem;
  border-radius: 4px;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--amber-dark); transform: translateY(-1px); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: all 0.3s;
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--dark); flex-direction: column; padding: 1rem; gap: 0; align-items: stretch; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.875rem 1rem; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-cta { display: none; }
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--amber);
  color: #110904;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,133,10,0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: transparent;
  color: #fff;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.8);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-outline:hover {
  background: #fff;
  color: var(--green-darkest);
  transform: translateY(-2px);
}

/* ─── SECTION HEADINGS ─── */
.section-tag {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.section-heading {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  position: relative;
  margin-bottom: 0.75rem;
}

.section-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--amber);
  border-radius: 2px;
  margin-top: 0.75rem;
}

.section-heading-center { text-align: center; }
.section-heading-center::after { margin: 0.75rem auto 0; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 72px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.2) 100%);
}

.hero-diagonal {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: var(--cream);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 2rem 8rem;
  width: 100%;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.hero-location svg { width: 16px; height: 16px; fill: var(--amber); }

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  max-width: 700px;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero h1 em { color: var(--amber); font-style: normal; }

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.05em;
}

.hero-badge svg { width: 18px; height: 18px; fill: var(--amber); }

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--green);
  padding: 2rem 0;
}

.stats-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-item { text-align: center; }

.stat-value {
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: 1.75rem;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 640px) {
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* ─── SECTIONS ─── */
.section-light {
  background: var(--cream);
  padding: 5rem 0;
}

.section-white {
  background: #fff;
  padding: 5rem 0;
}

.section-dark {
  background: var(--dark);
  padding: 5rem 0;
  color: #fff;
}

.section-green {
  background: var(--green);
  padding: 5rem 0;
  color: #fff;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── SERVICE CARDS ─── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.service-card {
  background: #fff;
  border: 1px solid rgba(30,77,43,0.12);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(12,20,12,0.08);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: rgba(212,133,10,0.4);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(12,20,12,0.15);
}

.service-card-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-card:hover .service-card-img img { transform: scale(1.04); }

.service-card-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--green);
  color: var(--amber);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.service-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.service-card-body p {
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex: 1;
}

.service-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-dark);
  padding: 0.25rem 0;
}

.service-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── ABOUT SECTION ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
}

.about-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-stat-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--amber);
  color: #110904;
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-family: 'Raleway', sans-serif;
}

.about-stat-badge .num { font-size: 2.5rem; font-weight: 900; line-height: 1; }
.about-stat-badge .lbl { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.75rem 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.about-feature svg {
  width: 18px;
  height: 18px;
  fill: var(--green);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img img { height: 320px; }
  .about-stat-badge { bottom: 1rem; right: 1rem; }
}

/* ─── CTA SECTION ─── */
.cta-section {
  background: var(--green);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.15'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ─── SERVICE AREAS ─── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.area-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(30,77,43,0.08);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green);
  border: 1px solid rgba(30,77,43,0.12);
}

.area-item svg { width: 14px; height: 14px; fill: var(--amber); flex-shrink: 0; }

@media (max-width: 768px) { .areas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .areas-grid { grid-template-columns: 1fr 1fr; } }

/* ─── CONTACT SECTION ─── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.contact-card {
  background: var(--cream-alt);
  border: 1px solid rgba(30,77,43,0.12);
  border-radius: 8px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
}

.contact-card:hover {
  border-color: var(--amber);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: var(--green);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.contact-card-icon svg { width: 22px; height: 22px; fill: var(--amber); }

.contact-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--green); }
.contact-card p { font-size: 0.85rem; color: var(--text-mid); }
.contact-card .contact-value { font-size: 0.95rem; font-weight: 600; color: var(--text-dark); margin-top: 0.25rem; }

@media (max-width: 640px) { .contact-grid { grid-template-columns: 1fr; } }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 1rem 0 1.25rem;
  color: rgba(255,255,255,0.6);
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.footer-contact-list svg { width: 14px; height: 14px; fill: var(--amber); flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,0.75); text-decoration: none; }
.footer-contact-list a:hover { color: var(--amber); }

.footer-col h4 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
}

.footer-links svg { width: 12px; height: 12px; fill: var(--amber); flex-shrink: 0; }
.footer-links a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--amber); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: var(--green);
  padding: 7rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: var(--cream);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.page-hero .breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.page-hero .breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
.page-hero .breadcrumb a:hover { color: var(--amber); }

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  line-height: 1.65;
}

/* ─── CONTENT SECTIONS ─── */
.content-section {
  padding: 5rem 0;
}

.content-section.alt { background: var(--cream); }
.content-section.dark-bg { background: var(--dark); color: #fff; }
.content-section.green-bg { background: var(--green); color: #fff; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col .order-first { order: -1; }
}

.feature-list {
  list-style: none;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.95rem;
  line-height: 1.55;
}

.feature-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: var(--amber);
  border-radius: 50%;
  margin-top: 0.45rem;
}

/* ─── HIGHLIGHT BOX ─── */
.highlight-box {
  background: var(--green);
  color: #fff;
  border-radius: 8px;
  padding: 2rem;
  margin: 2rem 0;
}

.highlight-box h3 { color: var(--amber); margin-bottom: 0.75rem; }
.highlight-box p { color: rgba(255,255,255,0.85); line-height: 1.65; }

/* ─── THANK YOU PAGE ─── */
.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  padding: 2rem;
}

.thanks-card {
  background: #fff;
  border-radius: 12px;
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 540px;
  width: 100%;
  box-shadow: 0 16px 64px rgba(0,0,0,0.1);
}

.thanks-icon {
  width: 72px;
  height: 72px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.thanks-icon svg { width: 36px; height: 36px; fill: var(--amber); }

.thanks-card h1 { color: var(--green); font-size: 1.75rem; font-weight: 800; margin-bottom: 0.75rem; }
.thanks-card p { color: var(--text-mid); line-height: 1.65; margin-bottom: 2rem; }
