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

:root {
  --green: #2d5a1b;
  --green-light: #4a7c2f;
  --green-pale: #eef4e8;
  --gold: #c8a84b;
  --dark: #1a1a1a;
  --gray: #6b7280;
  --light-gray: #f8f9fa;
  --white: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --radius: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.2rem; }
p { line-height: 1.7; color: var(--gray); }
a { text-decoration: none; color: inherit; }

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

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--green);
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: 'Nunito Sans', sans-serif;
  transition: background 0.2s, transform 0.15s;
  border: 2px solid var(--green);
  cursor: pointer;
  display: inline-block;
}
.btn-primary:hover { background: var(--green-light); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--dark);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid var(--dark);
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover { background: var(--dark); color: white; }

.btn-white {
  background: white;
  color: var(--green);
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-block;
  transition: all 0.2s;
  border: 2px solid white;
}
.btn-white:hover { background: transparent; color: white; }

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
  background: white;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-text {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.02em;
}
.logo-text strong { font-weight: 800; }

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--dark);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: white;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 10px 0; font-weight: 600; color: var(--gray); border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border-bottom: none; }

/* ===== HERO ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  background: #f7f8f5;
}

.hero-content {
  padding: 80px 60px 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.hero-content h1 { color: var(--dark); }
.hero-content p { font-size: 1.05rem; color: var(--gray); }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }

.hero-image {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 120px;
  background: linear-gradient(to right, #f7f8f5, transparent);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin: -36px 60px 0;
  position: relative;
  z-index: 10;
  padding: 28px 40px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  justify-content: center;
}
.trust-item span { font-weight: 600; font-size: 0.95rem; line-height: 1.5; }
.trust-item small { color: var(--gray); font-weight: 400; }
.trust-divider { width: 1px; height: 50px; background: var(--border); margin: 0 20px; }

/* ===== SECTION SHARED ===== */
.section-sub {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}
.section-sub::after {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

/* ===== SERVICES ===== */
.services-intro {
  padding: 100px 60px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.services-intro h2 { text-align: center; margin-bottom: 48px; }
.services-intro h2 strong { color: var(--green); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card.wide { grid-column: span 2; }

.service-icon { margin-bottom: 16px; }
.service-icon img { width: 60px; height: 60px; object-fit: contain; margin: 0 auto; }
.service-card h3 { margin-bottom: 6px; font-size: 1.05rem; }
.service-card p { font-size: 0.88rem; }
.card-bar { width: 32px; height: 3px; background: var(--green); border-radius: 2px; margin: 16px auto 0; }

/* ===== FEATURED PROJECTS ===== */
.featured-projects {
  padding: 80px 60px;
  background: var(--light-gray);
  max-width: 100%;
}
.featured-projects h2 { text-align: center; margin-bottom: 40px; }

.projects-showcase {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.project-main { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.project-main img { width: 100%; height: 420px; object-fit: cover; }
.project-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  padding: 40px 28px 28px;
  color: white;
}
.project-label h3 { color: white; font-size: 1.3rem; margin: 6px 0 8px; }
.project-label p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }

.project-tag {
  background: var(--green);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.projects-side { display: flex; flex-direction: column; gap: 20px; }
.project-thumb { position: relative; border-radius: var(--radius-lg); overflow: hidden; flex: 1; }
.project-thumb img { width: 100%; height: 200px; object-fit: cover; }
.project-thumb-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82), transparent);
  padding: 24px 20px 16px;
  color: white;
}
.project-thumb-label h4 { color: white; font-size: 1rem; margin-top: 6px; }

/* ===== WHY US ===== */
.why-us {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 100px 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.why-us h2 { margin-bottom: 28px; }
.why-us h2 strong { color: var(--green); }

.why-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.why-list li { display: flex; gap: 16px; align-items: flex-start; }
.why-icon {
  background: var(--green);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-list li div strong { display: block; margin-bottom: 2px; color: var(--dark); }
.why-list li div { font-size: 0.93rem; }

.why-us-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 460px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--light-gray);
  padding: 80px 60px;
  text-align: center;
}
.testimonials h2 { margin-bottom: 48px; }
.testimonials h2 strong { color: var(--green); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  text-align: left;
}
.stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 14px; }
.testimonial-card p { font-style: italic; font-size: 0.95rem; color: var(--gray); margin-bottom: 16px; }
.reviewer { font-weight: 700; font-size: 0.9rem; color: var(--dark); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  padding: 80px 60px;
  text-align: center;
}
.cta-content h2 { color: white; margin-bottom: 12px; }
.cta-content p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 32px; }

/* ===== FOOTER ===== */
.footer {
  background: #111;
  color: rgba(255,255,255,0.75);
  padding: 60px 60px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p { font-size: 0.9rem; margin-top: 12px; color: rgba(255,255,255,0.6); line-height: 1.6; }

.footer-links h4, .footer-contact h4 {
  color: white;
  font-size: 0.95rem;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-links { display: flex; flex-direction: column; gap: 0; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-links a:hover { color: white; }
.footer-contact p { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 6px; }
.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: white; }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  padding: 72px 60px;
  text-align: center;
  color: white;
}
.page-hero h1 { color: white; font-size: 2.5rem; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.05rem; }

/* ===== ABOUT PAGE ===== */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.about-section img { border-radius: var(--radius-lg); width: 100%; height: 440px; object-fit: cover; box-shadow: var(--shadow-lg); }
.about-section h2 { margin-bottom: 20px; }
.about-section h2 strong { color: var(--green); }
.about-section p { margin-bottom: 16px; }

.stats-bar {
  background: var(--green);
  color: white;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 48px 60px;
  text-align: center;
  gap: 24px;
}
.stat-item h3 { font-size: 2.4rem; color: white; }
.stat-item p { color: rgba(255,255,255,0.8); font-size: 0.95rem; margin-top: 4px; }

/* ===== SERVICES PAGE ===== */
.services-full {
  padding: 80px 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.services-full h2 { text-align: center; margin-bottom: 48px; }

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }
.service-row img { border-radius: var(--radius-lg); width: 100%; height: 340px; object-fit: cover; box-shadow: var(--shadow-lg); }
.service-row h3 { font-size: 1.6rem; margin-bottom: 12px; }
.service-row h3 strong { color: var(--green); }
.service-row p { margin-bottom: 16px; }
.service-row ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.service-row ul li::before { content: '✓ '; color: var(--green); font-weight: 700; }

/* ===== PROJECTS PAGE ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 80px 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.proj-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: white;
  transition: transform 0.2s, box-shadow 0.2s;
}
.proj-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.proj-card img { width: 100%; height: 220px; object-fit: cover; }
.proj-card-body { padding: 20px; }
.proj-card-body h3 { font-size: 1.1rem; margin-bottom: 6px; }
.proj-card-body p { font-size: 0.88rem; }

/* ===== CONTACT PAGE ===== */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.contact-info h2 { margin-bottom: 20px; }
.contact-info h2 strong { color: var(--green); }
.contact-info p { margin-bottom: 12px; }
.contact-info .info-list { list-style: none; margin: 24px 0; display: flex; flex-direction: column; gap: 14px; }
.contact-info .info-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.95rem; }
.contact-info .info-list li span:first-child { font-size: 1.2rem; }

.contact-form { background: white; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); }
.contact-form h3 { margin-bottom: 24px; font-size: 1.4rem; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 6px; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  transition: border-color 0.2s;
  outline: none;
  background: white;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card.wide { grid-column: span 1; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .nav-links, .navbar .btn-primary { display: none; }
  .hamburger { display: block; }

  .hero { grid-template-columns: 1fr; }
  .hero-content { padding: 50px 24px 40px; }
  .hero-image { min-height: 280px; }
  .hero-overlay { display: none; }

  .trust-bar { margin: 16px 20px 0; flex-direction: column; gap: 16px; padding: 24px; }
  .trust-divider { width: 100%; height: 1px; margin: 4px 0; }

  .services-intro { padding: 60px 24px 40px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card.wide { grid-column: span 2; }

  .featured-projects { padding: 60px 24px; }
  .projects-showcase { grid-template-columns: 1fr; }
  .project-main img { height: 300px; }
  .projects-side { flex-direction: row; }
  .project-thumb img { height: 160px; }

  .why-us { grid-template-columns: 1fr; padding: 60px 24px; }
  .why-us-image { order: -1; }
  .why-us-image img { height: 280px; }

  .testimonials { padding: 60px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .cta-banner { padding: 60px 24px; }

  .footer { padding: 40px 24px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .page-hero { padding: 48px 24px; }
  .about-section { grid-template-columns: 1fr; padding: 60px 24px; }
  .about-section img { height: 280px; }
  .stats-bar { grid-template-columns: repeat(2,1fr); padding: 40px 24px; }
  .services-full { padding: 60px 24px; }
  .service-row { grid-template-columns: 1fr; gap: 24px; }
  .service-row.reverse { direction: ltr; }
  .service-row img { height: 260px; }
  .projects-grid { grid-template-columns: 1fr; padding: 40px 24px; }
  .contact-section { grid-template-columns: 1fr; padding: 60px 24px; }
  .form-row { grid-template-columns: 1fr; }
}
