:root {
  --primary: #1f4d3d;
  --secondary: #e7b15e;
  --bg: #f7f4ee;
  --text: #1f1f1f;
  --muted: #5f5f5f;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #fdfcf8, var(--bg));
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

header {
  background: var(--primary);
  color: white;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.5px;
  text-decoration: none;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.brand-name {
  line-height: 1;
}

.brand span {
  color: var(--secondary);
}

.nav-links a {
  margin-left: 1.2rem;
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
}

.hero {
  padding: 5rem 0 4rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--primary);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  letter-spacing: -0.8px;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.badge {
  display: inline-block;
  background: var(--secondary);
  color: #3a2607;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.btn {
  display: inline-block;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.3px;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

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

.btn-secondary {
  background: white;
  color: var(--primary);
  border: 1px solid #d9d4ca;
}

.hero-card {
  background: white;
  border-radius: 22px;
  padding: 1.4rem;
  box-shadow: 0 18px 45px rgba(31, 77, 61, 0.12);
}

.hero-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
}

.section {
  padding: 2rem 0 4rem;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  letter-spacing: -0.6px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.card {
  background: white;
  padding: 1.2rem;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.card h3 {
  margin-bottom: 0.5rem;
  color: var(--primary);
}

footer {
  background: var(--primary);
  color: white;
  padding: 1.25rem 0;
  text-align: center;
}

/* Ensure all heading levels use modern font and primary color */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* MVP / feature highlight cards */
.feature-intro {
  margin-bottom: 1rem;
  color: var(--muted);
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.feature-card {
  background: white;
  border-radius: 14px;
  padding: 1.25rem;
  box-shadow: 0 12px 30px rgba(31, 77, 61, 0.08);
  border-left: 6px solid var(--secondary);
}

.feature-card h3 {
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.feature-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.75rem;
}

/* About section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.about-grid img {
  width: 100%;
  border-radius: 14px;
  height: 320px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(31,77,61,0.08);
}

.about-text h2 {
  margin-bottom: 0.6rem;
}

.about-text p { color: var(--muted); line-height:1.6; }

/* Services cards */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 12px 30px rgba(31,77,61,0.06);
  border: 1px solid rgba(31,77,61,0.10);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.service-card img { width: 140px; height: 100px; object-fit: cover; border-radius: 8px; flex: 0 0 140px; }

.service-card .service-body h3 { margin:0 0 0.4rem 0; color: var(--primary); }
.service-card .service-body ul { margin:0; padding-left:0; list-style: none; color:var(--muted); }
.service-card .service-body ul li { margin-bottom: 0.45rem; }

/* Highlighted service cards (green, centered) */
.service-card.highlight {
  background: var(--primary);
  color: white;
  border-color: rgba(255,255,255,0.08);
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-card.highlight img { width: 100%; height: 160px; object-fit: cover; border-radius: 10px; margin-bottom: 0.8rem; }
.service-card.highlight .service-body h3 { color: white; }
.service-card.highlight .service-body ul { color: rgba(255,255,255,0.95); padding-left: 0; }
.service-card.highlight .service-body ul li { margin-bottom: 0.6rem; }

/* Industries */
.industries { display: grid; grid-template-columns: 1fr 1fr; gap:1rem; align-items:center; }
.industries img { width:100%; border-radius:12px; height:220px; object-fit:cover; }

@media (max-width: 900px) {
  .about-grid, .industries { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card img { width: 100%; height: 160px; flex: none; }
}


@media (max-width: 800px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 3rem;
  }

  .cards,
  .feature-cards {
    grid-template-columns: 1fr;
  }
}

/* Footer (green) */
footer.site-footer {
  background: var(--primary);
  color: white;
  padding: 3.25rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo .brand {
  color: white;
  font-size: 1.25rem;
}

.footer-description {
  color: #cfcfcf;
  max-width: 320px;
  line-height: 1.6;
}

.footer-links h4 {
  color: var(--secondary);
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
}

.footer-links a {
  display: block;
  color: #e6e6e6;
  text-decoration: none;
  margin-bottom: 0.6rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

.footer-contact h4 {
  color: var(--secondary);
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
}

.footer-contact div {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
}

.footer-contact strong {
  color: white;
}

.footer-contact a {
  color: white;
  text-decoration: none;
  font-weight: 700;
}

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

.footer-contact-item {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  word-break: break-word;
}

.cta-btn {
  display: inline-block;
  padding: 0.6rem 1rem;
  border-radius: 14px;
  background: linear-gradient(90deg,#ffb03b 0%,#ff4da6 100%);
  color: white;
  font-weight: 700;
  box-shadow: 0 12px 40px rgba(255,77,166,0.12);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-description { max-width: none; }
}

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

/* Projects / portfolio */
.projects {
  padding: 3rem 0 4rem;
}

.projects .section-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.projects h2 {
  font-size: 2.4rem;
  margin: 0;
  color: var(--primary);
}

.projects .view-all {
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.project-card {
  position: relative;
  height: 360px;
  border-radius: 10px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.65) 100%);
}

.project-meta {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  color: white;
  z-index: 2;
}

.project-meta .category {
  display: inline-block;
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.project-meta h3 { margin: 0 0 0.4rem 0; font-size: 1.25rem; }
.project-meta p { margin: 0; opacity: 0.9; }

@media (max-width: 1000px) {
  .project-grid { grid-template-columns: 1fr; }
  .project-card { height: 260px; }
}

/* Service Cards Grid */
.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.services-card {
  background: white;
  border-radius: 12px;
  padding: 1.8rem;
  box-shadow: 0 10px 25px rgba(31, 77, 61, 0.06);
  border-top: 5px solid var(--secondary);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.services-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(31, 77, 61, 0.12);
}

.services-card h3 {
  color: var(--primary);
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
  line-height: 1.4;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

.service-list li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--muted);
  line-height: 1.5;
}

.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
}

/* Qualifications Grid */
.qualifications-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.qualification-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(31, 77, 61, 0.06);
  border-top: 4px solid var(--secondary);
  text-align: center;
}

.qualification-card h3 {
  color: var(--primary);
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.qualification-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Why Choose Us */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.reason-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(31, 77, 61, 0.06);
  border-top: 4px solid var(--secondary);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reason-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(31, 77, 61, 0.12);
}

.reason-card h3 {
  color: var(--primary);
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.reason-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.project-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(31, 77, 61, 0.06);
  border-left: 4px solid var(--secondary);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(31, 77, 61, 0.12);
}

.project-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.project-content {
  padding: 1.3rem 1.4rem 1.4rem;
}

.project-content h3 {
  color: var(--primary);
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.project-content p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.project-content p strong {
  color: var(--text);
}

/* Free Estimate Section */
.estimate-section {
  background: linear-gradient(135deg, var(--primary) 0%, #2d6b58 100%);
  color: white;
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.estimate-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.estimate-section > p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.estimate-contact {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.contact-method {
  flex: 1;
  min-width: 150px;
}

.contact-method h4 {
  color: var(--secondary);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-method p {
  margin: 0;
}

.contact-method a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: color 0.2s ease;
}

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

.estimate-section p:last-child {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1200px) {
  .services-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .qualifications-grid { grid-template-columns: repeat(2, 1fr); }
  .reasons-grid { grid-template-columns: repeat(3, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .services-cards-grid { grid-template-columns: 1fr; }
  .qualifications-grid { grid-template-columns: 1fr; }
  .reasons-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .estimate-contact { gap: 1.5rem; }
  .services-card { padding: 1.2rem; }
}
