/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Inter:wght@400;500;600&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --teal: #2ECCC5;
  --teal-dark: #1fa8a2;
  --teal-deep: #177e7a;
  --gold: #B5A332;
  --gold-dark: #9a8a2a;
  --gold-light: #d4c44e;
  --cream: #FAF8F0;
  --white: #FFFFFF;
  --off-white: #F2F0E8;
  --dark: #1A1A1A;
  --charcoal: #2D2D2D;
  --gray: #5A5A5A;
  --light-gray: #D5D0C4;
  --dirt: #8B7355;
  --dirt-light: #A89070;

  --font-heading: 'Oswald', sans-serif;
  --font-serif: 'Libre Baskerville', Georgia, serif;
  --font-body: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  line-height: 1.7;
  background: var(--cream);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

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

/* ===== HEADER / NAV ===== */
header {
  background: var(--charcoal);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--gold);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.logo img {
  width: 52px;
  height: 52px;

}

.logo span {
  color: var(--cream);
  font-weight: 400;
}

.logo em {
  color: var(--teal);
  font-weight: 400;
  font-family: var(--font-heading);
}

nav ul {
  display: flex;
  gap: 28px;
  align-items: center;
}

nav a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: #ccc;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s;
  padding: 4px 0;
  position: relative;
}

nav a:hover,
nav a.active {
  color: var(--teal);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width 0.3s;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

nav .btn-nav {
  background: var(--gold);
  color: var(--dark);
  padding: 10px 22px;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: background 0.3s, transform 0.2s;
}

nav .btn-nav::after {
  display: none;
}

nav .btn-nav:hover {
  background: var(--gold-light);
  color: var(--dark);
  transform: translateY(-1px);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--white);
}

/* ===== HERO ===== */
.hero {
  background: var(--charcoal);
  color: var(--white);
  padding: 100px 24px 90px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.015) 40px,
      rgba(255,255,255,0.015) 41px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.015) 40px,
      rgba(255,255,255,0.015) 41px
    );
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--teal));
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: 1px;
  text-transform: uppercase;
  max-width: 700px;
  color: var(--teal);
}

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

.hero p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  max-width: 580px;
  margin-bottom: 36px;
  opacity: 0.85;
  line-height: 1.8;
  font-style: italic;
  color: var(--dark);
}

.hero .btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  padding: 16px 38px;
  border-radius: 2px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(181, 163, 50, 0.3);
}

.hero .btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(181, 163, 50, 0.4);
}

/* ===== SKID STEER SCROLL ANIMATION ===== */
.skidsteer-track {
  position: relative;
  height: 90px;
  overflow: hidden;
  background: var(--off-white);
  border-top: none;
  border-bottom: none;
  background-image:
    linear-gradient(to right, var(--dirt-light) 0%, var(--dirt) 50%, var(--dirt-light) 100%);
  background-size: 100% 100%;
}

.skidsteer-ground {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20px;
  background: var(--dirt);
  opacity: 0.5;
}

.skidsteer-ground::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--dirt) 0px,
    var(--dirt) 8px,
    transparent 8px,
    transparent 16px
  );
  opacity: 0.6;
}

.skidsteer-svg {
  position: absolute;
  bottom: 14px;
  left: -120px;
  width: 110px;
  height: 70px;
  transition: none;
  filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.3));
}

/* ===== SECTIONS ===== */
section {
  padding: 80px 24px;
}

section:nth-child(even) {
  background: var(--off-white);
}

.section-tag {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 10px;
  font-weight: 600;
}

.section-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--dark);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-subtitle {
  text-align: center;
  font-family: var(--font-serif);
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto 50px;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
}

/* ===== DIVIDER ===== */
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  margin: 0 auto 20px;
  border: none;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border-radius: 0;
  padding: 36px 28px;
  text-align: left;
  box-shadow: 0 3px 15px rgba(0,0,0,0.06);
  border-left: 5px solid var(--teal);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, transparent 50%, var(--gold) 50%);
  opacity: 0.15;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card .icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.why-item {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  transition: transform 0.3s;
}

.why-item:hover {
  transform: translateY(-4px);
}

.why-item .icon {
  font-size: 2rem;
  margin-bottom: 14px;
  color: var(--teal);
}

.why-item h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.why-item p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== SERVICE AREA ===== */
.area-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 800px;
  margin: 0 auto;
}

.area-list span {
  background: var(--charcoal);
  color: var(--cream);
  padding: 10px 22px;
  border-radius: 0;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-left: 3px solid var(--teal);
  transition: background 0.3s;
}

.area-list span:hover {
  background: var(--dark);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
  padding: 70px 24px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--teal));
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-banner p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  margin-bottom: 30px;
  opacity: 0.85;
  font-style: italic;
}

.cta-banner .btn-white {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  padding: 14px 34px;
  border-radius: 2px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: transform 0.2s, background 0.3s;
}

.cta-banner .btn-white:hover {
  transform: translateY(-2px);
  background: var(--gold-light);
}

/* ===== CONTACT FORM ===== */
.contact-section {
  max-width: 680px;
  margin: 0 auto;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.contact-info-item {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-bottom: 3px solid var(--teal);
}

.contact-info-item .icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--teal);
}

.contact-info-item h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info-item p {
  color: var(--gray);
  font-size: 0.9rem;
}

.contact-info-item a {
  color: var(--teal-dark);
  font-weight: 500;
  transition: color 0.2s;
}

.contact-info-item a:hover {
  color: var(--teal);
}

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

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--charcoal);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--light-gray);
  border-radius: 0;
  font-size: 1rem;
  font-family: var(--font-body);
  background: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(46, 204, 197, 0.15);
}

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

.btn-submit {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  padding: 16px 40px;
  border: none;
  border-radius: 2px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(46, 204, 197, 0.3);
}

.btn-submit:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 204, 197, 0.4);
}

/* ===== ABOUT PAGE ===== */
.about-content {
  max-width: 780px;
  margin: 0 auto;
}

.about-content h2 {
  font-family: var(--font-heading);
  color: var(--dark);
  margin-bottom: 16px;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 12px;
}

.about-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.about-content p {
  font-family: var(--font-serif);
  color: var(--gray);
  margin-bottom: 24px;
  font-size: 1rem;
  line-height: 1.9;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.value-card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: 0;
  text-align: center;
  box-shadow: 0 3px 12px rgba(0,0,0,0.05);
  border-bottom: 3px solid var(--gold);
  transition: transform 0.3s;
}

.value-card:hover {
  transform: translateY(-4px);
}

.value-card .icon {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--teal);
}

.value-card h3 {
  font-family: var(--font-heading);
  margin-bottom: 10px;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.value-card p {
  font-family: var(--font-body);
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.7;
}

/* ===== SEO PAGE CONTENT ===== */
.seo-content {
  max-width: 780px;
  margin: 0 auto;
}

.seo-content h2 {
  font-family: var(--font-heading);
  color: var(--dark);
  margin-top: 36px;
  margin-bottom: 14px;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 10px;
}

.seo-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.seo-content p {
  font-family: var(--font-serif);
  color: var(--gray);
  margin-bottom: 18px;
  line-height: 1.9;
}

.seo-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}

.seo-content ul li {
  color: var(--gray);
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  line-height: 1.7;
}

.seo-content ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: bold;
}

.seo-content .highlight-box {
  background: var(--white);
  border-left: 5px solid var(--teal);
  padding: 24px 28px;
  border-radius: 0;
  margin: 30px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.seo-content .highlight-box h3 {
  font-family: var(--font-heading);
  color: var(--dark);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 1.1rem;
}

.seo-content .highlight-box p {
  margin-bottom: 0;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 50px 24px 24px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--teal));
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
  max-width: 1100px;
  margin: 0 auto 36px;
}

.footer-col h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.footer-col p,
.footer-col a {
  color: #aaa;
  font-size: 0.9rem;
  line-height: 1.9;
}

.footer-col a:hover {
  color: var(--teal);
}

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

.footer-col ul li a {
  position: relative;
  padding-left: 14px;
}

.footer-col ul li a::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: bold;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #333;
  color: #666;
  font-size: 0.8rem;
  font-family: var(--font-heading);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    padding: 70px 20px 60px;
    text-align: center;
  }

  .hero h1 {
    font-size: 2rem;
    max-width: 100%;
  }

  .hero p {
    max-width: 100%;
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--charcoal);
    padding: 24px;
    gap: 18px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    border-bottom: 3px solid var(--gold);
  }

  nav ul.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .skidsteer-track {
    height: 65px;
  }

  .skidsteer-svg {
    width: 80px;
    height: 50px;
    bottom: 10px;
  }

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

@media (max-width: 480px) {
  .hero {
    padding: 50px 16px 45px;
  }

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

  section {
    padding: 50px 16px;
  }

  .logo {
    font-size: 1.2rem;
  }

  .logo img {
    width: 40px;
    height: 40px;
  }
}
