/* ============================================================
   BUDGET TREE REMOVAL — Main Stylesheet
   Brand: Green #609B2D | Orange #FBA311 | Dark #1e293b
   ============================================================ */

/* ── CSS Variables ── */
:root {
  --green:        #609B2D;
  --green-dark:   #4d7d23;
  --green-light:  #e8f3dd;
  --green:       #609b2d;
  --green-dark:  #3e7b1a;
  --green-light: #fff4dd;
  --dark:         #000;
  --text:         #334155;
  --text-light:   #64748b;
  --bg:           #ffffff;
  --bg-light:     #f8faf5;
  --bg-gray:      #F7F7F7;
  --border:       #e2e8f0;
  --radius:       8px;
  --radius-lg:    14px;
  --shadow:       0 2px 12px rgba(0,0,0,0.07);
  --shadow-lg:    0 8px 32px rgba(0,0,0,0.12);
  --max-w:        1180px;
  --header-h:     90px;
  --transition:   0.22s ease;
  --orange:       #FBA311
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block;}
a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-dark); }
ul { list-style: none; }
h1,h2,h3,h4 { color: var(--dark); font-weight: 700; line-height: 1.25; }
h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p { margin-bottom: 0.9rem; }
.img-radius{border-radius: 10px;}
/* ── Layout ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section--sm { padding: 40px 0; }
.section--lg { padding: 88px 0; }
.section--green { background: var(--green); color: #fff; }
.section--green h2, .section--green h3 { color: #fff; }
.section--dark { background: var(--dark); color: #fff; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--light { background: var(--bg-light); }
.section--gray { background: var(--bg-gray); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }
.text-white { color: #fff !important; }

/* ── Typography helpers ── */
.lead { font-size: 1.15rem; color: var(--text-light); margin-bottom: 1.2rem; }
.section-label {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-label--green { background: var(--green-light); color: var(--green-dark); }
.section-title { margin-bottom: 12px; }
.section-intro { font-size: 1.05rem; color: var(--text-light); max-width: 640px; margin: 0 auto 36px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); color: #fff; }
.btn-green {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.btn-green:hover { background: var(--green-dark); border-color: var(--green-dark); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover { background: var(--green); color: #fff; }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline-white:hover { background: #fff; color: var(--dark); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

/* ── Header ── */
#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.09);
  height: var(--header-h);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.logo img{height: 70px;}
.cta_list img{width: 17px; margin-right: 8px;}
.cta_list {display: flex; align-items: center;}

/* ── Navigation ── */
.nav { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  border-radius: 6px;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-link:hover { background: var(--bg-light); color: var(--green); }
.nav-link .arrow {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}
.nav-item:hover .arrow { transform: rotate(180deg); }
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 100;
  padding: 8px 0;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block;
  padding: 9px 18px;
  font-size: 0.88rem;
  color: var(--text);
  transition: all var(--transition);
}
.dropdown a:hover { background: var(--bg-light); color: var(--green); padding-left: 22px; }
.dropdown--wide { min-width: 560px; display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.dropdown-col-title {
  padding: 10px 18px 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
}
.header-cta {
    margin-left: 12px;
    background: #000;
    color: #fff;
    border-color: #000;
}
.header-cta img {width: 18px;}

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--dark);
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  margin: 5px 0;
  transition: all var(--transition);
}

/* ── Top bar ── */
.top-bar {
  background: #1b3d0a;
  color: rgba(255,255,255,0.85);
  padding: 8px 0;
  font-size: 0.82rem;
}
.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: #ff4848;}
.top-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

/* ── Hero ── */

.hero {
    position: relative;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(90deg, rgb(0 0 0 / 90%) 0%, rgb(0 0 0 / 80%) 50%, rgb(155 157 154 / 12%) 70%, rgb(255 255 255 / 0%) 100%), url(../images/banner_img_budget_tree_new.jpg) center / cover no-repeat;
}
.hero-title{font-size:clamp(2rem,5vw,3rem);margin-bottom:18px;}
.hero-content { position: relative; z-index: 1; padding: 72px 0; }
.hero h1, .hero--inner h1 { color: #fff; margin-bottom: 16px; }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.82); margin-bottom: 28px; max-width: 560px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.hero-badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero--inner { min-height: 260px; background: linear-gradient(135deg, #3c721a 0%, #0f1e0a 100%);}
.hero--inner .hero-content { padding: 48px 0; }
/*.hero--service { background: linear-gradient(135deg, #3c721a 0%, #0f1e0a 100%);}*/
.hero--blog { background: linear-gradient(135deg, #1a2e3b 0%, var(--dark) 100%); }
.hero--location { background: linear-gradient(135deg, #0f2a12 0%, var(--dark) 100%); }

/* ── Breadcrumb ── */
.breadcrumb { padding: 12px 0; background: var(--bg-gray); border-bottom: 1px solid var(--border); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; font-size: 0.84rem; }
.breadcrumb li + li::before { content: '›'; color: var(--text-light); margin-right: 6px; }
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb .current { color: var(--text); font-weight: 500; }

/* ── Cards ── */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-icon {
  width: 52px;
  height: 52px;
  background: var(--green-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.5rem;
}
.card-icon--green { background: var(--green-light); }
.card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.card p { font-size: 0.92rem; color: var(--text-light); margin-bottom: 16px; }
.card-link { font-size: 0.88rem; font-weight: 600; color: var(--green); }
.card-link::after { content: ' →'; }

.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card-img {
  width: 100%;
  /*height: 200px;*/
  background: var(--bg-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--green);
  position: relative;
  overflow: hidden;
}
.service-card-img img { width: 100%; height: 100%; object-fit: cover; }
.service-card-body { padding: 22px; }
.service-card-body h3 { font-size: 1.05rem; margin-bottom: 8px; }
.service-card-body p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 14px; }

/* ── Pricing table ── */
.price-table { width: 100%; border-collapse: collapse; margin-bottom: 24px; font-size: 0.92rem; background: #fff;}
.price-table thead th {
  background: #648f49;
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.88rem;
}
.price-table tbody tr:nth-child(even) { background: var(--bg-gray); }
.price-table tbody tr:hover { background: var(--green-light); }
.price-table td { padding: 10px 16px; border-bottom: 1px solid var(--border); vertical-align: top; }
.price-table td:first-child { font-weight: 500; }
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); background: #fff;}

/* ── Checklist / feature list ── */

.check-list li{
  position: relative;
  padding-left: 35px;
  margin-bottom: 8px;
  color: #000;
}
.check-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 5px;
}
.check-list--green li::before { background: var(--green); }

/* ── FAQ Accordion ── */

.faq-section { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  background: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  transition: background var(--transition);
  user-select: none;
  gap: 16px;
}
.faq-question:hover { background: var(--bg-light); }
.faq-question.open { background: var(--green-light); color: var(--green-dark); }
.faq-icon {
  min-width: 24px;
  height: 24px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--green);
  transition: transform var(--transition);
}
.faq-question.open .faq-icon { transform: rotate(45deg); background: var(--green); color: #fff; }
.faq-answer {
  display: none;
  padding: 16px 20px 18px;
  font-size: 0.93rem;
  color: var(--text);
  border-top: 1px solid var(--border);
  line-height: 1.7;
  background: #fff;
  transition: max-height 0.4s ease;
}
.faq-answer.open { display: block; }

/* ── Stats / trust bar ── */
.stats-bar { display: flex; flex-wrap: wrap; gap: 0; }
.stat-item { text-align: center; padding: 28px 32px; flex: 1; min-width: 120px; }
.stat-item + .stat-item { border-left: 1px solid rgba(255,255,255,0.15); }
.stat-num { font-size: 30px; font-weight: 800; color: #fff;); display: block; line-height: 1; }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.75); margin-top: 4px; }

/* ── CTA Block ── */
.cta-block {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  color: #fff;
}
.cta-block .btn-primary { background: #9f030f; border-color: #9f030f;;}
.cta-block h2 { color: #fff; margin-bottom: 10px; }
.cta-block p { color: rgba(255,255,255,0.88); margin-bottom: 24px; font-size: 1.05rem; }
.cta-block-inline {
  background: var(--green);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin: 36px 0;
}
.cta-block-inline h3 { color: #fff; margin-bottom: 8px; }
.cta-block-inline p { color: rgba(255,255,255,0.88); margin-bottom: 18px; font-size: 0.95rem; }

/* ── Trust badges ── */
.row_fr2{ grid-template-columns: 1fr 1fr !important; display: block;}
.mobile_view{display: none;}

.trust-row {
    display: grid;
    gap: 16px;
    align-items: center;
    grid-template-columns: 1fr 1fr 1fr;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-gray);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 7px 16px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--dark);
}
.trust-badge .badge-icon { font-size: 1rem; }

/* ── Review card ── */
.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 24px;
  box-shadow: var(--shadow);
}
.review-stars { color: #ffc518; font-size: 1.1rem; margin-bottom: 10px; }
.review-text { font-size: 0.92rem; color: var(--text); font-style: italic; margin-bottom: 14px; line-height: 1.6; }
.reviewer { font-size: 0.84rem; font-weight: 600; color: var(--dark); }
.reviewer span { color: var(--text-light); font-weight: 400; }

/* ── Img placeholder ── */
.img-placeholder {
  width: 100%;
  background: var(--bg-gray);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.85rem;
  border: 2px dashed var(--border);
  gap: 8px;
}
.img-placeholder .ph-icon { font-size: 2.5rem; opacity: 0.4; }
.img-placeholder-hero { height: 400px; border-radius: 0; }
.img-placeholder-card { height: 220px; }
.img-placeholder-thumb { height: 180px; }

/* ── Blog hub ── */
.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-thumb { height: 200px; background: var(--bg-gray); overflow: hidden; position: relative; }
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-thumb .ph-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: var(--text-light);
  flex-direction: column;
  gap: 6px;
  font-size: 1.8rem;
}
.blog-card-body { padding: 20px; }
.blog-card-meta { font-size: 0.78rem; color: var(--text-light); margin-bottom: 8px; display: flex; gap: 12px; margin-top: 15px;}
.blog-card-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; line-height: 1.35; }
.blog-card-excerpt { font-size: 0.87rem; color: var(--text-light); line-height: 1.55; }
.blog-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Article content ── */
.article-body { max-width: 860px; }
.article-body h2 { margin-top: 32px; margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid var(--green-light); }
.article-body h3 { margin-top: 24px; margin-bottom: 10px; color: var(--green-dark); }
.article-body ul { padding-left: 20px; margin-bottom: 16px; }
.article-body ul li { margin-bottom: 6px; font-size: 0.95rem; line-height: 1.6; }
.article-body ul li::marker { color: var(--green); }
.article-body ol { padding-left: 20px; margin-bottom: 16px; }
.article-body ol li { margin-bottom: 6px; font-size: 0.95rem; line-height: 1.6; }
.article-body .price-table { margin: 20px 0; }
.article-author {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 28px;
  border-left: 4px solid var(--green);
}
.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  min-width: 48px;
}
.author-info strong { display: block; font-size: 0.9rem; color: var(--dark); }
.author-info span { font-size: 0.82rem; color: var(--text-light); }

/* ── Location page ── */
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.map-embed iframe { width: 100%; height: 380px; border: none; display: block; }
.location-nearby { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;}
.location-nearby a {
    background: #c2da95a6;
    border: 1px solid #a5a5a5;
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 0.84rem;
    font-weight: 500;
    color: #000000;
    transition: all var(--transition);
}
.location-nearby a:hover { background: var(--green-light); color: var(--green); border-color: var(--green-light); }

/* ── Two-col layout for content pages ── */
.content-layout { display: grid; grid-template-columns: 1fr; gap: 40px; }

/* ── Info box ── */
.info-box {
  background: #fff;
  border-radius: var(--radius);
  border-left: 4px solid var(--green);
  padding: 18px 22px;
  margin: 20px 0;
}
.info-box--green { border-color: var(--green); background: var(--green-light); }
.info-box--warning { border-color: #e53e3e; background: #fff5f5; }
.info-box h4 { margin-bottom: 6px; font-size: 0.95rem; }
.info-box p { margin-bottom: 0; font-size: 0.92rem; }

/* ── Process steps ── */
.steps { display: flex; flex-direction: column; gap: 0; counter-reset: step; }
.step { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.step:last-child { border-bottom: none; }
.step-num {
  min-width: 40px;
  height: 40px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 2px;
}
.step-content h4 { margin-bottom: 4px; font-size: 1rem; }
.step-content p { font-size: 0.92rem; color: var(--text-light); margin-bottom: 0; }

/* ── Compare table ── */
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.compare-table th { background: var(--green); color: #fff; padding: 12px 16px; text-align: center; }
.compare-table th:first-child { text-align: left; background: var(--dark); }
.compare-table td { padding: 10px 16px; border-bottom: 1px solid var(--border); text-align: center; }
.compare-table td:first-child { text-align: left; font-weight: 500; }
.compare-table tr:nth-child(even) { background: var(--bg-gray); }
.tick { color: var(--green); font-weight: 700; }
.cross { color: #e53e3e; font-weight: 700; }
.mob_grid { gap: 48px; align-items: start; }

/* ── Footer ── */
.ft_mob_sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #FFC107;
    padding: 12px 15px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}
.btn-outline-dark{border: 2px solid #000;}
.ft_mob_sticky {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.ft_mob_sticky .btn-outline-dark{background: #000; border: 2px solid #000;}
.ft_mob_sticky a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    font-size: 16px;
    color: #fff;
    background: green;
}

/* Hide on desktop */
@media (min-width: 768px) {
    .ft_mob_sticky {
        display: none !important;
    }
}
#footer { background: #0e0a07; color: rgba(255,255,255,0.8); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-brand strong { display: block; font-size: 1.1rem; color: #fff; font-weight: 800; margin-bottom: 4px; }
.footer-brand p { font-size: 0.88rem; margin-bottom: 16px; line-height: 1.6; width: 75%;}
.footer-contact { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.footer-contact a { color: rgba(255,255,255,0.8); font-size: 0.9rem; display: flex; gap: 8px; align-items: center; }
.footer-contact a:hover { color: var(--green); }
.footer-col h4 { font-size: 0.88rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #fff; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: 0.86rem; color: rgba(255,255,255,0.7); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: #fff; }
.ft-logo img {height: 119px;border-radius: 8px;margin-bottom: 20px;}

/* ── Sticky call bar (mobile) ── */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--green);
  color: #fff;
  text-align: center;
  padding: 14px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
}

#testimonials {
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 67%, #cde1bf36 100%);
}
.icn { border: 2px solid #759b2d; padding: 10px; border-radius: 6px; }
  .h3_heading{ margin-bottom:15px; font-size: 28px;}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .dropdown--wide { min-width: 320px; grid-template-columns: 1fr; }
  .sticky_md { position: sticky; top: 100px; align-self: flex-start;}
  .row_fr2{display: none;}
  .mobile_view{display: block;}
 .h3_heading{font-size: 25px;}
}
@media (max-width: 991px) {
    .nav, .header-cta { display: none; }
    .menu-toggle { display: block; }
    .grid_md{ grid-template-columns: 1fr; }
     .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: var(--shadow-lg);
    padding: 12px 16px 20px;
    gap: 2px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .grid-2, .grid-3{ grid-template-columns: 1fr; }
  .trust-row {grid-template-columns: 2fr 2fr;}
 
  
  .service_bx { grid-template-columns: 2fr 2fr !important;}
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 4px 0 4px 16px;
    min-width: auto;
    display: none;
  }
  .mob_grid, .on-mobile-reverse {flex-direction: column-reverse; display: flex; }
  .dropdown.open { display: block; }
  .dropdown--wide { grid-template-columns: 1fr; }
  #header { position: relative; }
  .hero { min-height: 360px; }
  .hero-content { padding: 48px 0; }
  .stats-bar { flex-direction: row; flex-wrap: wrap; }
  .stat-item { flex: 0 0 50%; border-left: none !important; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-block { padding: 32px 24px; }
  .sticky-call { display: block; }
  .section, .section--lg { padding: 44px 0; }
  /*.top-bar-inner { flex-direction: column; gap: 4px; text-align: center; }*/
  .stat-num { font-size: 25px;}
  .text-sm-left{text-align: start;}
  .sticky_md  {position: unset;}
}
@media (max-width: 480px) {
    .service_bx { grid-template-columns: 1fr !important;}
    .trust-badge {font-size: 12.5px; flex-direction: column;text-align: center;  border-radius: 10px;
    padding: 10px 10px;}
    .hero-badge { padding: 5px 10px;}
  .hero h1 { font-size: 1.6rem; }
  .btn-lg { padding: 13px 24px; font-size: 0.95rem; }
  .hero-title {font-size: 27px;}
  .btn {padding: 12px 18px;}
  .footer-brand p {width: 100%;}
}
