/* ============ RESET & VARIABLES ============ */
:root {
  --green-900: #12251d;
  --green-800: #17352a;
  --green-700: #1e4435;
  --green-600: #2a5c47;
  --green-100: #e7efe9;
  --green-50: #f3f7f4;
  --gold: #c8a05a;
  --gold-dark: #b08a42;
  --text: #26332d;
  --text-light: #6b7a73;
  --white: #ffffff;
  --border: #e3eae5;
  --shadow-sm: 0 4px 18px rgba(18, 37, 29, .07);
  --shadow-md: 0 12px 40px rgba(18, 37, 29, .12);
  --radius: 16px;
  --font-head: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea { font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.25; color: var(--green-900); }

.section { padding: 100px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-600);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow i { color: var(--gold); }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 14px; }
.section-head p { color: var(--text-light); }
.section-head .btn { margin-top: 14px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 60px;
  font-weight: 600;
  font-size: .95rem;
  transition: all .25s ease;
  border: 2px solid transparent;
}
.btn i { transition: transform .25s ease; }
.btn:hover i { transform: translateX(4px); }
.btn-primary { background: var(--green-700); color: var(--white); }
.btn-primary:hover { background: var(--green-600); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { border-color: var(--green-700); color: var(--green-700); }
.btn-outline:hover { background: var(--green-700); color: var(--white); }
.btn-light { background: var(--white); color: var(--green-800); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-light { border-color: rgba(255,255,255,.5); color: var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--green-800); }
.btn-sm { padding: 11px 22px; font-size: .88rem; }
.btn-block { width: 100%; justify-content: center; }

/* ============ TOPBAR ============ */
.topbar { background: var(--green-900); color: #cfddd5; font-size: .82rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; padding: 9px 24px; flex-wrap: wrap; gap: 8px; }
.topbar-contact { display: flex; gap: 26px; flex-wrap: wrap; }
.topbar-contact li { display: inline-flex; align-items: center; gap: 8px; color: #cfddd5; }
.topbar-contact a { color: #cfddd5; transition: color .2s; }
.topbar-contact a:hover { color: var(--gold); }
.topbar-contact i, .topbar-social i { color: var(--gold); }
.topbar-social { display: flex; gap: 6px; }
.topbar-social a {
  width: 30px; height: 30px; display: grid; place-items: center;
  border-radius: 50%; color: #cfddd5; transition: all .2s;
}
.topbar-social a:hover { background: var(--gold); color: var(--green-900); }

/* ============ HEADER ============ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
  transition: box-shadow .3s ease;
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; }

.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 42px; height: 42px; display: grid; place-items: center;
  background: var(--green-700); color: var(--gold);
  border-radius: 12px; font-size: 1.1rem;
}
.logo-text { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--green-900); }
.logo-light .logo-text { color: var(--white); }

.nav-list { display: flex; gap: 30px; }
.nav-list a { font-size: .94rem; font-weight: 500; color: var(--text); position: relative; padding: 4px 0; transition: color .2s; }
.nav-list a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--gold); transition: width .25s ease;
}
.nav-list a:hover, .nav-list a.active { color: var(--green-700); }
.nav-list a:hover::after, .nav-list a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 16px; }
.nav-toggle {
  display: none; background: none; border: none;
  font-size: 1.4rem; color: var(--green-900);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  background:
    radial-gradient(900px 500px at 90% -10%, rgba(200,160,90,.14), transparent 60%),
    linear-gradient(180deg, var(--green-50), var(--white));
  padding: 84px 0 110px;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; right: -140px; top: -140px;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(42,92,71,.08), transparent 65%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }

.hero-content .eyebrow { margin-bottom: 20px; }
.hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); margin-bottom: 20px; }
.hero h1 .accent { color: var(--green-600); }
.hero-content > p { font-size: 1.08rem; color: var(--text-light); max-width: 520px; margin-bottom: 34px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-rating { display: flex; align-items: center; gap: 12px; color: var(--text-light); font-size: .92rem; }
.stars { color: #f5b301; display: inline-flex; gap: 3px; font-size: .85rem; }

.hero-visual { position: relative; }
.hero-img {
  width: 100%; aspect-ratio: 9/11; object-fit: cover;
  border-radius: 240px 240px 20px 20px;
  box-shadow: var(--shadow-md);
  border: 6px solid var(--white);
}
.hero-badge {
  position: absolute; display: flex; align-items: center; gap: 12px;
  background: var(--white); border-radius: 14px; padding: 14px 20px;
  box-shadow: var(--shadow-md); font-size: .85rem;
}
.hero-badge i { font-size: 1.3rem; color: var(--gold); }
.hero-badge strong { display: block; font-family: var(--font-head); color: var(--green-900); font-size: 1rem; }
.hero-badge span { color: var(--text-light); font-size: .78rem; }
.badge-top { top: 30px; left: -22px; animation: float 5s ease-in-out infinite; }
.badge-bottom { bottom: 40px; right: -18px; animation: float 6s ease-in-out infinite reverse; }

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

/* ============ TRUSTED ============ */
.trusted { padding: 48px 0; border-top: 1px solid var(--border); background: var(--white); }
.trusted-title { text-align: center; color: var(--text-light); font-size: .92rem; margin-bottom: 26px; }
.trusted-logos {
  display: flex; justify-content: center; align-items: center;
  gap: 48px; flex-wrap: wrap;
}
.trusted-logos span {
  font-family: var(--font-head); font-weight: 700; font-size: 1.15rem;
  color: #b9c4bd; letter-spacing: .04em; transition: color .25s;
  cursor: default;
}
.trusted-logos span:hover { color: var(--green-600); }

/* ============ SERVICES ============ */
.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.service-card {
  position: relative; background: var(--green-50);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 42px 32px 36px;
  transition: all .3s ease;
  overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0 auto auto 0; right: 0;
  height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); background: var(--white); }
.service-card:hover::before { transform: scaleX(1); }

.service-num {
  position: absolute; top: 26px; right: 28px;
  font-family: var(--font-head); font-weight: 800; font-size: 2.2rem;
  color: rgba(30,68,53,.09);
}
.service-icon {
  width: 62px; height: 62px; display: grid; place-items: center;
  background: var(--white); color: var(--green-600);
  border-radius: 16px; font-size: 1.5rem; margin-bottom: 22px;
  border: 1px solid var(--border); transition: all .3s ease;
}
.service-card:hover .service-icon { background: var(--green-700); color: var(--gold); }
.service-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.service-card p { color: var(--text-light); font-size: .94rem; margin-bottom: 20px; }
.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--green-600); font-weight: 600; font-size: .92rem;
}
.service-link i { transition: transform .25s ease; }
.service-link:hover i { transform: translateX(5px); }

/* ============ ABOUT ============ */
.about { background: var(--green-50); }
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: center; }

.about-visual { position: relative; }
.about-visual img {
  width: 100%; aspect-ratio: 8/9; object-fit: cover;
  border-radius: 20px; box-shadow: var(--shadow-md);
}
.experience-badge {
  position: absolute; bottom: -26px; left: 40px;
  background: var(--green-700); color: var(--white);
  border-radius: 18px; padding: 22px 30px;
  display: flex; gap: 16px; align-items: center;
  box-shadow: var(--shadow-md);
}
.experience-badge strong { font-family: var(--font-head); font-size: 2.6rem; color: var(--gold); line-height: 1; }
.experience-badge span { font-size: .85rem; color: #d5e2da; line-height: 1.4; }

.about-content h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); margin-bottom: 16px; }
.about-content > p { color: var(--text-light); margin-bottom: 28px; }

.about-features { display: grid; gap: 18px; margin-bottom: 34px; }
.about-features li { display: flex; gap: 16px; align-items: flex-start; }
.about-features i {
  flex: none; width: 46px; height: 46px; display: grid; place-items: center;
  background: var(--white); color: var(--green-600);
  border: 1px solid var(--border); border-radius: 12px; font-size: 1.1rem;
}
.about-features h4 { font-size: 1.02rem; margin-bottom: 3px; }
.about-features p { color: var(--text-light); font-size: .9rem; }

/* ============ STATS ============ */
.stats { background: var(--green-800); padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat strong {
  font-family: var(--font-head); font-size: 2.8rem; font-weight: 800;
  color: var(--white); display: inline;
}
.stat-suffix { font-family: var(--font-head); font-size: 2.8rem; font-weight: 800; color: var(--gold); }
.stat p { color: #9db8ab; margin-top: 4px; font-size: .95rem; }

/* ============ WHAT WE DO ============ */
.whatwedo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.what-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: all .3s ease;
}
.what-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.what-card img { width: 100%; aspect-ratio: 7/5; object-fit: cover; }
.what-card h3 { font-size: 1.18rem; padding: 0 28px; margin-top: 24px; margin-bottom: 8px; }
.what-card p { color: var(--text-light); font-size: .93rem; padding: 0 28px 28px; }

/* ============ PROJECTS ============ */
.projects { background: var(--green-50); }
.projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.project-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border); transition: all .3s ease;
}
.project-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.project-img { position: relative; overflow: hidden; }
.project-img img { width: 100%; aspect-ratio: 7/5; object-fit: cover; transition: transform .5s ease; }
.project-card:hover .project-img img { transform: scale(1.05); }
.project-tag {
  position: absolute; top: 18px; left: 18px;
  background: var(--green-700); color: var(--white);
  padding: 7px 16px; border-radius: 40px; font-size: .8rem; font-weight: 600;
}
.project-body { padding: 28px 34px 32px; }
.project-num {
  font-family: var(--font-head); color: var(--gold-dark);
  font-weight: 700; font-size: .85rem; letter-spacing: .1em;
}
.project-body h3 { font-size: 1.35rem; margin: 6px 0 10px; }
.project-body p { color: var(--text-light); font-size: .94rem; margin-bottom: 18px; }

/* ============ WHY CHOOSE US ============ */
.why { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-grid article {
  background: var(--green-50); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 26px; transition: all .3s ease;
}
.why-grid article:hover { background: var(--green-700); transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-num { font-family: var(--font-head); font-weight: 800; font-size: 2rem; color: rgba(30,68,53,.15); transition: color .3s; }
.why-grid article:hover .why-num { color: var(--gold); }
.why-grid h3 { font-size: 1.08rem; margin: 8px 0 8px; transition: color .3s; }
.why-grid p { color: var(--text-light); font-size: .9rem; transition: color .3s; }
.why-grid article:hover h3, .why-grid article:hover p { color: var(--white); }

/* ============ PROCESS ============ */
.process { background: var(--green-50); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step {
  position: relative; background: var(--white);
  border-radius: var(--radius); padding: 38px 30px;
  border: 1px solid var(--border); transition: all .3s ease;
}
.step:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.step-num {
  display: grid; place-items: center;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--green-700); color: var(--gold);
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
  margin-bottom: 20px; position: relative; z-index: 1;
}
.step h3 { font-size: 1.2rem; margin-bottom: 10px; }
.step p { color: var(--text-light); font-size: .93rem; }

/* ============ TESTIMONIALS ============ */
.testimonials { background: var(--white); }
.testimonial-slider { position: relative; max-width: 800px; margin: 0 auto; overflow: hidden; }
.testimonial-track {
  display: flex; transition: transform .5s ease;
}
.testimonial-slide {
  flex: 0 0 100%; text-align: center; padding: 20px 30px 10px;
}
.testimonial-slide blockquote {
  font-family: var(--font-head); font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--green-900); line-height: 1.6; margin: 18px 0 30px;
}
.testimonial-slide figcaption { display: flex; align-items: center; justify-content: center; gap: 14px; }
.avatar {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--c); color: #fff; font-weight: 700; font-family: var(--font-head);
  font-size: 1.05rem;
}
.testimonial-slide figcaption strong { display: block; font-family: var(--font-head); font-size: 1rem; color: var(--green-900); }
.testimonial-slide figcaption span:not(.avatar) { color: var(--text-light); font-size: .85rem; }

.slider-nav {
  display: flex; justify-content: center; gap: 12px; margin-top: 34px;
}
.slider-btn {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--white);
  color: var(--green-700); font-size: 1rem;
  transition: all .25s ease;
}
.slider-btn:hover { background: var(--green-700); color: var(--white); border-color: var(--green-700); }

/* ============ CTA ============ */
.cta { padding: 0; }
.cta-inner {
  background:
    radial-gradient(700px 400px at 90% 50%, rgba(200,160,90,.25), transparent 60%),
    linear-gradient(135deg, var(--green-800), var(--green-600));
  border-radius: 26px; padding: 70px 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  flex-wrap: wrap; position: relative; overflow: hidden;
}
.cta-info { max-width: 560px; }
.cta-info .eyebrow { color: var(--gold); }
.cta-info h2 { color: var(--white); font-size: clamp(1.8rem, 3.2vw, 2.5rem); margin-bottom: 14px; }
.cta-info p { color: #cfe0d7; margin-bottom: 20px; }
.cta-rating { display: flex; align-items: center; gap: 12px; color: #cfe0d7; font-size: .92rem; }
.cta-actions { display: flex; flex-direction: column; gap: 14px; }

/* ============ TEAM ============ */
.team { background: var(--green-50); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.team-card { text-align: center; }
.team-img {
  position: relative; border-radius: var(--radius); overflow: hidden;
  margin-bottom: 18px;
}
.team-img img { width: 100%; aspect-ratio: 5/6; object-fit: cover; transition: transform .5s ease; }
.team-card:hover .team-img img { transform: scale(1.05); }
.team-social {
  position: absolute; inset: auto 0 0 0; display: flex; justify-content: center; gap: 10px;
  padding: 16px; background: linear-gradient(transparent, rgba(18,37,29,.85));
  opacity: 0; transform: translateY(14px); transition: all .3s ease;
}
.team-card:hover .team-social { opacity: 1; transform: translateY(0); }
.team-social a {
  width: 38px; height: 38px; display: grid; place-items: center;
  background: var(--white); color: var(--green-700); border-radius: 50%;
  transition: all .2s;
}
.team-social a:hover { background: var(--gold); color: var(--green-900); }
.team-card h3 { font-size: 1.1rem; }
.team-card > span { color: var(--text-light); font-size: .9rem; }

/* ============ FAQ ============ */
.faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: start; }
.faq-intro h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); margin-bottom: 16px; }
.faq-intro p { color: var(--text-light); margin-bottom: 26px; }
.faq-intro p a { color: var(--green-600); font-weight: 600; }

.faq-item {
  background: var(--green-50); border: 1px solid var(--border);
  border-radius: 14px; margin-bottom: 14px; overflow: hidden;
  transition: all .3s ease;
}
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer; list-style: none;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--green-900);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  flex: none; width: 34px; height: 34px; display: grid; place-items: center;
  background: var(--white); border: 1px solid var(--border); border-radius: 50%;
  color: var(--green-700); font-size: .85rem; transition: all .3s ease;
}
.faq-item[open] { background: var(--white); box-shadow: var(--shadow-sm); }
.faq-item[open] .faq-icon { background: var(--green-700); color: var(--white); transform: rotate(45deg); }
.faq-item p { padding: 0 24px 22px; color: var(--text-light); font-size: .94rem; }

/* ============ BLOG ============ */
.blog { background: var(--green-50); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: all .3s ease;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.blog-img { position: relative; overflow: hidden; }
.blog-img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--white); color: var(--green-700);
  font-size: .78rem; font-weight: 600; padding: 5px 14px; border-radius: 30px;
}
.blog-body { padding: 24px 28px 28px; }
.blog-meta { display: flex; gap: 18px; color: var(--text-light); font-size: .82rem; margin-bottom: 12px; }
.blog-meta i { color: var(--gold); margin-right: 5px; }
.blog-body h3 { font-size: 1.2rem; margin-bottom: 10px; }
.blog-body p { color: var(--text-light); font-size: .92rem; margin-bottom: 16px; }

/* ============ CONTACT ============ */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: start; }

.contact-form {
  background: var(--green-50); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.contact-form input, .contact-form textarea {
  width: 100%; border: 1px solid var(--border);
  background: var(--white); border-radius: 10px;
  padding: 14px 18px; font-size: .94rem; color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(42,92,71,.12);
}
.contact-form textarea { resize: vertical; margin-bottom: 18px; }
.form-note { font-size: .8rem; color: var(--text-light); margin-top: 14px; text-align: center; }
.form-success {
  display: none; margin-top: 16px; padding: 14px 18px;
  background: #e5f4ea; color: #1e7a44; border-radius: 10px;
  font-size: .92rem;
}
.form-success.show { display: flex; gap: 10px; align-items: center; }

.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--green-50); border: 1px solid var(--border);
  border-radius: 14px; padding: 22px 24px;
}
.contact-card i {
  flex: none; width: 46px; height: 46px; display: grid; place-items: center;
  background: var(--green-700); color: var(--gold);
  border-radius: 12px; font-size: 1.1rem;
}
.contact-card h4 { font-size: 1rem; margin-bottom: 3px; }
.contact-card p { color: var(--text-light); font-size: .9rem; }
.map { border-radius: 14px; overflow: hidden; border: 1px solid var(--border); height: 240px; }
.map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.2); }

/* ============ FOOTER ============ */
.footer { background: var(--green-900); color: #a9bcb2; padding: 70px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px; padding-bottom: 48px;
}
.footer .logo-light .logo-mark { background: var(--green-600); }
.footer-brand p { margin: 18px 0 20px; font-size: .93rem; max-width: 320px; }
.footer-col h4 {
  color: var(--white); font-size: 1.05rem; margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; font-size: .93rem; }
.footer-col a { transition: color .2s, padding-left .2s; }
.footer-col a:hover { color: var(--gold); padding-left: 6px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact i { color: var(--gold); margin-top: 5px; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 24px; font-size: .85rem;
}

/* ============ BACK TO TOP ============ */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--green-700); color: var(--white);
  border: none; font-size: 1.05rem;
  box-shadow: var(--shadow-md);
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: all .3s ease;
}
.back-to-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--green-600); }

/* ============ SCROLL REVEAL ============ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .services-grid, .whatwedo-grid, .why-grid, .process-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .hero-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 60px 0 80px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }

  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 85vw);
    background: var(--white); box-shadow: var(--shadow-md);
    transform: translateX(100%); transition: transform .35s ease;
    z-index: 200; padding: 90px 30px 30px;
  }
  .nav.open { transform: translateX(0); }
  .nav-list { flex-direction: column; gap: 8px; }
  .nav-list a { display: block; padding: 12px 16px; border-radius: 10px; font-size: 1rem; }
  .nav-list a:hover, .nav-list a.active { background: var(--green-50); color: var(--green-700); }
  .nav-toggle { display: block; }
}

@media (max-width: 640px) {
  .section { padding: 70px 0; }
  .services-grid, .whatwedo-grid, .why-grid, .process-grid, .blog-grid,
  .team-grid, .projects-grid, .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-inner { padding: 48px 30px; }
  .hero-badge { display: none; }
  .topbar-contact { justify-content: center; }
}