/* Specific styles for Arkansas Lawn Care landing page */
:root {
  --primary-color: #4CAF50; /* Grass green for lawn care theme */
  --secondary-color: #8BC34A;
  --accent-color: #FF9800; /* Orange accent for contrast */
  --light-green: #e8f5e9;
}

/* Header styles */
.header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  font-size: 1.8rem;
  margin-bottom: 0;
}

.highlight {
  color: var(--primary-color);
  font-weight: 700;
}

.contact-info .phone {
  font-size: 1.2rem;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.contact-info .phone i {
  margin-right: 8px;
  color: var(--primary-color);
}

/* Hero section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="600" viewBox="0 0 1200 600"><rect width="1200" height="600" fill="%234CAF50" opacity="0.3"/><path d="M0,400 C100,380 200,450 300,400 C400,350 500,380 600,400 C700,420 800,350 900,370 C1000,390 1100,350 1200,380 L1200,600 L0,600 Z" fill="%234CAF50" opacity="0.5"/><text x="50%" y="40%" font-family="Arial" font-size="80" fill="%23ffffff" text-anchor="middle" dominant-baseline="middle">Arkansas Lawn Care</text></svg>');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-primary {
  background-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #3d8b40;
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid white;
}

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

/* Services section */
.services-section {
  background-color: var(--light-bg);
}

.services-grid {
  text-align: center;
}

.service-card {
  padding: 30px 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

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

/* Why Choose Us section */
.why-us-section {
  background-color: white;
}

.why-us-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.feature {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.feature i {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-right: 15px;
}

.why-us-image {
  display: flex;
  justify-content: center;
}

.image-placeholder {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  overflow: hidden;
}

/* Areas section */
.areas-section {
  background-color: var(--light-green);
  padding: 60px 0;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  text-align: center;
}

.area {
  background-color: white;
  padding: 15px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.area h3 {
  font-size: 1.1rem;
  margin-bottom: 0;
}

/* Testimonials section */
.testimonials-section {
  background-color: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  padding: 30px;
}

.stars {
  color: #FFD700;
  margin-bottom: 15px;
}

.testimonial-author {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}

.testimonial-author h4 {
  margin-bottom: 5px;
}

.testimonial-author p {
  margin-bottom: 0;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Contact section */
.contact-section {
  background-color: var(--light-green);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.contact-info-container {
  padding: 30px;
}

.contact-details {
  margin-top: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-right: 15px;
  min-width: 25px;
}

.form-container {
  background-color: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.btn-block {
  width: 100%;
  font-size: 1.1rem;
  padding: 12px;
}

.form-disclaimer {
  font-size: 0.8rem;
  opacity: 0.8;
  text-align: center;
  margin-top: 15px;
}

/* Footer */
.footer {
  background-color: var(--dark-bg);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo h3 {
  color: white;
  margin-bottom: 15px;
}

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

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

.footer-links a {
  color: #ddd;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.footer-contact i {
  margin-right: 10px;
  min-width: 20px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Seasonal tips section - Optional addition */
.seasonal-tips {
  background-color: var(--light-green);
  padding: 60px 0;
}

.tips-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.current-season {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  margin-bottom: 20px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .contact-container, 
  .why-us-content {
    grid-template-columns: 1fr;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
    margin-bottom: 10px;
  }
  
  .image-placeholder {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .header-content {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-info {
    margin-top: 15px;
  }
  
  .hero {
    padding: 60px 0;
  }
}
