/* ============================================
   TAYLOR MADE LAWNS — Brand Stylesheet
   Colors from logo: Orange #E8632B → Gold #F5B731
   ============================================ */

:root {
  --orange: #E8632B;
  --gold: #F5B731;
  --gradient: linear-gradient(135deg, #E8632B, #F5B731);
  --dark: #1a1a1a;
  --dark-green: #2d4a2d;
  --forest: #3a5a3a;
  --cream: #faf8f5;
  --light-gray: #f3f1ee;
  --medium-gray: #888;
  --white: #ffffff;
  --text: #333333;
  --text-light: #666666;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --transition: 0.3s ease;
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

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

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

.section-subtitle {
  color: var(--orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.section-title {
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-light);
  max-width: 640px;
  font-size: 1.05rem;
}

.text-center { text-align: center; }
.text-center .section-desc { margin-left: auto; margin-right: auto; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(232, 99, 43, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232, 99, 43, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--orange);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover {
  background: #333;
  transform: translateY(-2px);
}

/* ============================================
   HEADER / NAV
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition);
}
.header.scrolled {
  box-shadow: var(--shadow);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--text);
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-phone {
  font-weight: 700;
  color: var(--orange);
  font-size: 0.9rem;
  white-space: nowrap;
}
.nav-phone:hover { color: var(--gold); }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all var(--transition);
  border-radius: 2px;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
}
.mobile-nav.active { display: block; }
.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-weight: 500;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--light-gray);
}
.mobile-nav .btn {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a3a1a 0%, #2d4a2d 50%, #1a3018 100%);
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 80%, rgba(232,99,43,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(245,183,49,0.1) 0%, transparent 50%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content { color: var(--white); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  color: var(--gold);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero h1 .accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}
.hero-stat {
  text-align: center;
}
.hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

.hero-visual {
  position: relative;
}
.hero-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 40px;
  color: var(--white);
}
.hero-card h3 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: 1.3rem;
}
.hero-card-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.hero-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}
.hero-card-item p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}
.hero-card-item strong {
  display: block;
  font-size: 1rem;
  color: var(--white);
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 100px 0;
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232,99,43,0.15);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(232,99,43,0.1), rgba(245,183,49,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.service-card h3 { margin-bottom: 12px; }

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-light);
}
.service-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  font-size: 0.85rem;
}

/* ============================================
   ABOUT / WHY CHOOSE US
   ============================================ */
.about {
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 48px;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--gradient);
  padding: 3px;
}

.about-image-inner {
  border-radius: 18px;
  overflow: hidden;
  background: var(--dark-green);
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-image-inner::after {
  content: '🏔️';
  font-size: 6rem;
  opacity: 0.3;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  gap: 12px;
}
.about-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(232,99,43,0.1), rgba(245,183,49,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.about-feature h4 { margin-bottom: 4px; }
.about-feature p { font-size: 0.85rem; color: var(--text-light); }

/* ============================================
   SERVICE AREA
   ============================================ */
.area {
  padding: 100px 0;
  background: var(--dark-green);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(232,99,43,0.12), transparent 60%);
}
.area .container { position: relative; z-index: 2; }
.area .section-subtitle { color: var(--gold); }
.area h2 { color: var(--white); }
.area .section-desc { color: rgba(255,255,255,0.7); }

.area-towns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
  justify-content: center;
}
.area-town {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all var(--transition);
}
.area-town:hover {
  background: var(--gradient);
  border-color: transparent;
}

/* ============================================
   SEASONAL PROGRAM
   ============================================ */
.program {
  padding: 100px 0;
  background: var(--cream);
}

.program-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.program-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
}
.program-step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto 16px;
}
.program-step h4 { margin-bottom: 8px; }
.program-step p { font-size: 0.9rem; color: var(--text-light); }

/* ============================================
   TESTIMONIALS (placeholder section)
   ============================================ */
.testimonials {
  padding: 100px 0;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--orange);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.testimonial-text {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.8;
}
.testimonial-author {
  font-weight: 600;
  color: var(--dark);
}
.testimonial-location {
  font-size: 0.85rem;
  color: var(--medium-gray);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta {
  padding: 80px 0;
  background: var(--gradient);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1), transparent 50%);
}
.cta .container { position: relative; z-index: 2; }
.cta h2 { color: var(--white); margin-bottom: 12px; }
.cta p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 32px; }
.cta .btn-dark { font-size: 1.1rem; padding: 16px 40px; }

.cta-phone {
  display: block;
  margin-top: 20px;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
}
.cta-phone:hover { opacity: 0.9; }

/* ============================================
   BLOG
   ============================================ */
.blog-section {
  padding: 100px 0;
  background: var(--cream);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.blog-card-image {
  height: 220px;
  background: linear-gradient(135deg, var(--dark-green), var(--forest));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}
.blog-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gradient);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}
.blog-card-body {
  padding: 28px;
}
.blog-card-date {
  font-size: 0.8rem;
  color: var(--medium-gray);
  margin-bottom: 8px;
}
.blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.blog-card h3 a { color: var(--dark); }
.blog-card h3 a:hover { color: var(--orange); }
.blog-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.blog-card-link {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9rem;
}
.blog-card-link:hover { color: var(--gold); }

/* ============================================
   BLOG ARTICLE PAGE
   ============================================ */
.blog-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, #1a3a1a 0%, #2d4a2d 100%);
  color: var(--white);
  text-align: center;
}
.blog-hero .section-subtitle { color: var(--gold); }
.blog-hero h1 { color: var(--white); max-width: 800px; margin: 0 auto 16px; }
.blog-hero-meta { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

.blog-content {
  padding: 60px 0 100px;
  max-width: 780px;
  margin: 0 auto;
}
.blog-content .container { max-width: 780px; }

.article-body h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 1.6rem;
}
.article-body h3 {
  margin-top: 32px;
  margin-bottom: 12px;
}
.article-body p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: var(--text-light);
}
.article-body ul, .article-body ol {
  margin-bottom: 20px;
  padding-left: 24px;
}
.article-body li {
  margin-bottom: 8px;
  font-size: 1rem;
  color: var(--text-light);
  list-style: disc;
}
.article-body ol li { list-style: decimal; }
.article-body strong { color: var(--dark); }

.article-cta {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  margin-top: 48px;
  border: 2px solid rgba(232,99,43,0.2);
}
.article-cta h3 { margin-bottom: 12px; }
.article-cta p { color: var(--text-light); margin-bottom: 20px; }
.article-cta .cta-phone {
  color: var(--orange);
  font-size: 1.5rem;
  display: block;
  margin-top: 12px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}

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

.footer-brand img {
  height: 50px;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1rem;
}

.footer-links a {
  display: block;
  padding: 4px 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}
.footer-contact-item span:first-child {
  font-size: 1.1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1280px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 0.8rem; }
  .nav-phone { display: none; }
  .nav-cta .btn { padding: 10px 20px; font-size: 0.85rem; }
}

@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { order: -1; }
  .program-timeline { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .nav-phone { display: flex; }
  .mobile-toggle { display: flex; }
}

@media (max-width: 768px) {

  .hero {
    min-height: auto;
    padding: 120px 0 80px;
  }
  .hero-stats { gap: 24px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }

  .services-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .program-timeline { grid-template-columns: 1fr; }
  .testimonial-cards { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }

  .area-towns { gap: 10px; }
  .area-town { padding: 10px 20px; font-size: 0.85rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .cta-phone { font-size: 1.4rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 2rem; }
  .hero-stats { flex-direction: column; gap: 16px; align-items: flex-start; }
}

/* ============================================
   BLOG PAGE HERO (listing page)
   ============================================ */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, #1a3a1a 0%, #2d4a2d 100%);
  color: var(--white);
  text-align: center;
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-top: 12px; }

/* Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
