/* Reset and base */
* { box-sizing: border-box; margin:0; padding:0; }
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f9fafb;
}

/* Colors */
:root {
  --primary: #1e3a8a;     /* deep trustworthy blue */
  --primary-light: #3b82f6;
  --secondary: #d97706;    /* gold */
  --secondary-light: #fbbf24;
  --gray: #4b5563;
  --light: #f3f4f6;
}

header, .hero {
  background: linear-gradient(rgba(30, 58, 138, 0.75), rgba(30, 58, 138, 0.65)), url('../images/hero-landscaping-art.png') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 120px 20px 80px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.4rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.btn {
  display: inline-block;
  background: var(--secondary);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 6px;
  font-size: 1.2rem;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: var(--secondary-light);
  transform: translateY(-2px);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Services */
.services {
  background: white;
  padding: 60px 0;
  text-align: center;
}

.services h2 {
  color: var(--primary);
  margin-bottom: 2rem;
}

.service-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.service {
  background: var(--light);
  padding: 1.5rem;
  border-radius: 8px;
  width: 220px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Gallery */
.gallery {
  padding: 60px 0;
  background: var(--light);
  text-align: center;
}

.gallery h2, .gallery h3 {
  color: var(--primary);
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}

.gallery-item:hover {
  transform: scale(1.04);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Map */
.map {
  padding: 40px 0;
  text-align: center;
}

.map iframe {
  width: 100%;
  max-width: 800px;
  height: 450px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Reviews */
.reviews {
  background: white;
  padding: 60px 0;
  text-align: center;
}

.review {
  max-width: 500px;
  margin: 2rem auto;
  font-style: italic;
  padding: 1.5rem;
  background: var(--light);
  border-left: 5px solid var(--secondary);
  border-radius: 6px;
}

/* FAQ */
.faq {
  padding: 60px 0;
}

.faq details {
  margin-bottom: 1rem;
  background: white;
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}

summary {
  cursor: pointer;
  font-weight: bold;
  color: var(--primary);
}

/* Contact / CTA */
.contact, .final-cta {
  text-align: center;
  padding: 60px 20px;
  background: var(--primary);
  color: white;
}

.contact a {
  color: var(--secondary-light);
}

/* Modal (image popup) */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  overflow: auto;
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 85vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.close {
  position: absolute;
  top: 25px;
  right: 35px;
  color: #fff;
  font-size: 50px;
  font-weight: bold;
  cursor: pointer;
}

/* Quote Form Modal */
#quote-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

.modal-box {
  background: white;
  max-width: 550px;
  margin: 8% auto;
  padding: 2.5rem;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.modal-box h2 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.modal-box input, .modal-box textarea {
  width: 100%;
  padding: 0.9rem;
  margin: 0.7rem 0;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1rem;
}

.modal-box button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 1rem;
  width: 100%;
  border-radius: 6px;
  font-size: 1.1rem;
  cursor: pointer;
}

.modal-box button:hover {
  background: var(--primary-light);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
  color: var(--gray);
}

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 90px 15px 60px; }
  .hero h1 { font-size: 2.4rem; }
}
