/* ===========================
   MC LANDSCAPING SERVICES CSS
   Premium Unique Design
   =========================== */

/* --- Import & Variables --- */
:root {
  --forest: #1a3a2a;
  --forest-dark: #0f2419;
  --forest-mid: #2a5040;
  --sage: #5a8a70;
  --lime: #a8d870;
  --lime-light: #c5e88d;
  --gold: #d4a843;
  --gold-light: #f0c860;
  --cream: #f8f5ef;
  --white: #ffffff;
  --gray-100: #f4f4f2;
  --gray-200: #e8e6e0;
  --gray-500: #8a8a80;
  --gray-700: #444440;
  --text: #1a1a16;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* --- Reusable utilities --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  background: rgba(90, 138, 112, 0.1);
  border: 1px solid rgba(90, 138, 112, 0.25);
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--forest-dark);
  margin-bottom: 16px;
}

.section-sub {
  color: var(--gray-500);
  font-size: 17px;
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--sage), var(--forest));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(90, 138, 112, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(90, 138, 112, 0.5);
  background: linear-gradient(135deg, var(--forest-mid), var(--forest-dark));
}

.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--forest);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-full { width: 100%; justify-content: center; }

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(15, 36, 25, 0.95);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
}

.logo-mc {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--lime), var(--sage));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 16px;
  color: var(--forest-dark);
  flex-shrink: 0;
}

.logo-text {
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--lime); }

.nav-cta {
  background: linear-gradient(135deg, var(--lime), var(--sage)) !important;
  color: var(--forest-dark) !important;
  font-weight: 700 !important;
  padding: 10px 24px;
  border-radius: 40px;
  transition: var(--transition) !important;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(168,216,112,0.4) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--forest-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  /* layered green landscape aesthetic */
  background: 
    radial-gradient(ellipse 80% 60% at 60% 100%, rgba(26,58,42,0.8) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 60%, rgba(90,138,112,0.3) 0%, transparent 50%),
    linear-gradient(165deg, #0f2419 0%, #1a3a2a 35%, #2a5040 60%, #1a3a2a 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(168,216,112,0.06)'/%3E%3C/svg%3E");
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(168,216,112,0.12);
  border: 1px solid rgba(168,216,112,0.3);
  color: var(--lime);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 40px;
  margin-bottom: 28px;
  animation: fadeDown 0.8s ease both;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 700px;
  animation: fadeDown 0.8s ease 0.1s both;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(90deg, var(--lime), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 40px;
  animation: fadeDown 0.8s ease 0.2s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeDown 0.8s ease 0.3s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  animation: fadeDown 0.8s ease 0.4s both;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  color: var(--lime);
  line-height: 1;
}
.stat-plus {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--lime);
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.15);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  z-index: 10;
}
.hero-scroll span {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  writing-mode: vertical-lr;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 1.5s ease infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.4; }
}

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

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(90,138,112,0.05), transparent);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(90,138,112,0.3);
}

.service-card:hover::before { opacity: 1; }

.service-icon-wrap {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(90,138,112,0.12), rgba(26,58,42,0.08));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(90,138,112,0.2);
}

.service-icon {
  width: 28px;
  height: 28px;
  color: var(--sage);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--forest-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card p {
  color: var(--gray-500);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--sage);
  text-decoration: none;
  transition: color 0.25s;
}
.card-link:hover { color: var(--forest); }

/* ===========================
   ABOUT
   =========================== */
.about {
  background: var(--white);
}

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

.about-visual {
  position: relative;
}

.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.img-accent {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  z-index: 2;
}
.accent-tl {
  top: -12px;
  left: -12px;
  background: linear-gradient(135deg, var(--lime), var(--sage));
  border-radius: 8px 8px 0 8px;
}
.accent-br {
  bottom: -12px;
  right: -12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 8px 0 8px 8px;
}

.about-photo {
  width: 100%;
  height: 480px;
  background: 
    radial-gradient(ellipse at 30% 70%, rgba(90,138,112,0.6) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 30%, rgba(168,216,112,0.3) 0%, transparent 45%),
    linear-gradient(145deg, var(--forest-dark), var(--forest-mid), var(--sage));
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 32px;
}

.about-photo::before {
  content: '';
  position: absolute;
  bottom: 60px;
  left: 40px;
  width: 140px;
  height: 180px;
  background: rgba(168,216,112,0.12);
  border-radius: 50% 50% 40% 60%;
  animation: float 4s ease-in-out infinite;
}
.about-photo::after {
  content: '';
  position: absolute;
  top: 50px;
  right: 50px;
  width: 100px;
  height: 120px;
  background: rgba(212,168,67,0.1);
  border-radius: 60% 40% 50% 50%;
  animation: float 5s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}

.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--forest), var(--forest-dark));
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(168,216,112,0.2);
  z-index: 5;
}

.float-num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 900;
  color: var(--lime);
  line-height: 1;
}
.float-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-align: center;
  line-height: 1.4;
}

.about-content { padding-right: 24px; }

.about-content p {
  color: var(--gray-700);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0 36px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--gray-100);
  border-radius: var(--radius);
  border-left: 3px solid var(--sage);
}

.pillar-icon { font-size: 22px; flex-shrink: 0; }

.pillar strong {
  display: block;
  font-size: 15px;
  color: var(--forest-dark);
  margin-bottom: 2px;
}
.pillar span {
  font-size: 13px;
  color: var(--gray-500);
}

/* ===========================
   PORTFOLIO
   =========================== */
.portfolio {
  background: var(--forest-dark);
}

.portfolio .section-tag { color: var(--lime); background: rgba(168,216,112,0.1); border-color: rgba(168,216,112,0.25); }
.portfolio .section-title { color: var(--white); }
.portfolio .section-sub { color: rgba(255,255,255,0.5); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 16px;
}

.portfolio-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.portfolio-item.large {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
}

.portfolio-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-bg { transform: scale(1.06); }

.pb1 { background: linear-gradient(145deg, #2d5a3d, #1a3a2a, #4a7a5a); }
.pb2 { background: linear-gradient(145deg, #3a4a2a, #2a3a18, #5a6a3a); }
.pb3 { background: linear-gradient(145deg, #1a4a3a, #0f2a22, #3a6a52); }
.pb4 { background: linear-gradient(145deg, #4a5a2a, #2a3a14, #6a8040); }
.pb5 { background: linear-gradient(145deg, #2a6a4a, #1a4a32, #4a8a62); }

/* add subtle leaf texture via pseudo-element */
.portfolio-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cellipse cx='40' cy='40' rx='30' ry='18' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='1'/%3E%3C/svg%3E") repeat;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,25,18,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transform: translateY(4px);
  transition: var(--transition);
}
.portfolio-item:hover .portfolio-overlay { transform: translateY(0); }

.portfolio-overlay span {
  font-size: 11px;
  font-weight: 600;
  color: var(--lime);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.portfolio-overlay h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--white);
  line-height: 1.3;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials { background: var(--cream); }

.testi-track-wrap {
  overflow: hidden;
  position: relative;
}

.testi-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testi-card {
  min-width: calc(33.333% - 16px);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  flex-shrink: 0;
}

.stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testi-card p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  flex-shrink: 0;
}
.av1 { background: linear-gradient(135deg, var(--forest), var(--sage)); }
.av2 { background: linear-gradient(135deg, var(--sage), var(--lime)); color: var(--forest-dark); }
.av3 { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--forest-dark); }
.av4 { background: linear-gradient(135deg, var(--forest-mid), var(--forest)); }

.testi-author strong {
  display: block;
  font-size: 15px;
  color: var(--forest-dark);
}
.testi-author span {
  font-size: 13px;
  color: var(--gray-500);
}

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.testi-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  background: var(--white);
  color: var(--forest);
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.testi-btn:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
}

.testi-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-200);
  transition: var(--transition);
  cursor: pointer;
}
.dot.active {
  background: var(--sage);
  width: 24px;
  border-radius: 4px;
}

/* ===========================
   CTA BANNER
   =========================== */
.cta-banner {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--forest-dark), var(--forest-mid), var(--sage));
}
.cta-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168,216,112,0.15), transparent 60%);
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-inner p {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  margin-bottom: 36px;
}

/* ===========================
   CONTACT
   =========================== */
.contact {
  background: var(--white);
}

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

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

.contact-info p {
  color: var(--gray-500);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--gray-100);
  border-radius: var(--radius);
}

.detail-icon {
  width: 42px;
  height: 42px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.contact-detail-item strong {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  margin-bottom: 2px;
}
.contact-detail-item span {
  font-size: 15px;
  font-weight: 500;
  color: var(--forest-dark);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid var(--gray-200);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--forest-dark);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(90,138,112,0.12);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-success {
  display: none;
  text-align: center;
  color: var(--sage);
  font-weight: 600;
  font-size: 15px;
  padding: 12px;
  background: rgba(90,138,112,0.08);
  border-radius: var(--radius);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--forest-dark);
  color: rgba(255,255,255,0.7);
  padding-top: 64px;
}

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

.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.6; max-width: 240px; }

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links ul a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.25s;
}
.footer-links ul a:hover { color: var(--lime); }

.footer-contact p { font-size: 14px; margin-bottom: 8px; }

.footer-bottom {
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-container { grid-template-columns: 1fr; gap: 48px; }
  .about-content { padding-right: 0; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .portfolio-item.large { grid-row: auto; grid-column: auto; }
  .contact-container { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 260px;
    background: var(--forest-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 24px;
    transition: right 0.3s ease;
    z-index: 999;
    box-shadow: -8px 0 40px rgba(0,0,0,0.4);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 16px; }
  .hamburger { display: flex; z-index: 1000; }

  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }

  .testi-card { min-width: 85%; }

  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }

  .hero-scroll { display: none; }
}
