/* ============================================================
   Green Ridge Lawn & Landscape - Stylesheet
   Palette: Forest Green #2D5016 | Lime #7CB518 | Earth Brown #6B4226 | Cream #F9F6EE
   Fonts: Nunito (headings + body) - modern, friendly, clean
   ============================================================ */

:root {
  --forest:      #2D5016;
  --forest-mid:  #3D6B1F;
  --lime:        #7CB518;
  --lime-light:  #9DD832;
  --lime-dark:   #3A6B0E;
  --brown:       #6B4226;
  --brown-light: #8B5E3C;
  --cream:       #F9F6EE;
  --cream2:      #EFF0E8;
  --white:       #FFFFFF;
  --charcoal:    #1F2D0E;
  --gray:        #5F6B50;
  --light-gray:  #DDE5D0;
  --text:        #2A3520;
  --shadow:      0 4px 20px rgba(45,80,22,.10);
  --shadow-lg:   0 12px 40px rgba(45,80,22,.18);
  --radius:      8px;
  --ease:        all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; color: var(--text); background: var(--white); line-height: 1.65; }
h1, h2, h3, h4 { font-family: 'Nunito', sans-serif; font-weight: 800; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; }

/* ── TOPBAR ── */
.topbar { background: var(--forest); color: rgba(255,255,255,.8); font-size: .8rem; padding: .5rem 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; }
.topbar a { color: var(--lime-light); font-weight: 700; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 1.5rem; }
.topbar i { margin-right: .35rem; color: var(--lime-light); }

/* ── NAVBAR ── */
.navbar { position: sticky; top: 0; z-index: 999; background: var(--white); border-bottom: 2px solid var(--light-gray); box-shadow: 0 2px 14px rgba(45,80,22,.08); padding: 0 2rem; }
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: .85rem; }
.logo-leaf { width: 44px; height: 44px; background: var(--forest); border-radius: 50% 50% 50% 10%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--lime-light); transform: rotate(-20deg); }
.logo-leaf i { transform: rotate(20deg); }
.logo-words .biz-name { font-size: 1.15rem; font-weight: 900; color: var(--forest); line-height: 1.1; }
.logo-words .biz-tag { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--forest); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: .9rem; font-weight: 700; color: var(--text); letter-spacing: .01em; transition: var(--ease); }
.nav-links a:hover { color: var(--forest); }
.btn-quote { background: var(--lime-dark) !important; color: var(--white) !important; padding: .5rem 1.2rem; border-radius: 50px !important; font-weight: 800 !important; }
.btn-quote:hover { background: var(--lime) !important; color: var(--forest) !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 25px; height: 2px; background: var(--forest); transition: var(--ease); }

/* ── HERO ── */
.hero {
  min-height: 92vh; position: relative;
  background: var(--forest);
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; background: url('https://picsum.photos/seed/lawnlandscape1/1400/900') center/cover no-repeat; opacity: .3; }
.hero-grad { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(45,80,22,.95) 40%, rgba(45,80,22,.5) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 5rem 2rem; width: 100%; }
.hero-pill { display: inline-flex; align-items: center; gap: .55rem; background: rgba(124,181,24,.15); border: 1px solid rgba(124,181,24,.4); color: var(--lime-light); padding: .4rem 1.1rem; border-radius: 50px; font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.5rem; }
.hero h1 { font-size: clamp(2.8rem, 6vw, 5rem); color: var(--white); margin-bottom: 1.25rem; max-width: 680px; }
.hero h1 .lime { color: var(--lime-light); }
.hero p { color: rgba(255,255,255,.72); font-size: 1.06rem; max-width: 500px; line-height: 1.8; margin-bottom: 2.5rem; font-weight: 400; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }
.hero-badges { display: flex; gap: 2rem; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: .6rem; color: rgba(255,255,255,.7); font-size: .85rem; font-weight: 700; }
.hero-badge i { color: var(--lime-light); font-size: .9rem; }

/* ── BUTTONS ── */
.btn-lime { display: inline-flex; align-items: center; gap: .5rem; background: var(--lime-dark); color: var(--white); padding: .9rem 2.25rem; border-radius: 50px; font-weight: 800; font-size: .95rem; border: none; cursor: pointer; transition: var(--ease); }
.btn-lime:hover { background: var(--lime); color: var(--forest); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(124,181,24,.35); }
.btn-outline-white { display: inline-flex; align-items: center; gap: .5rem; background: transparent; color: var(--white); padding: .9rem 2.25rem; border-radius: 50px; font-weight: 700; font-size: .95rem; border: 2px solid rgba(255,255,255,.4); cursor: pointer; transition: var(--ease); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-forest { display: inline-flex; align-items: center; gap: .5rem; background: var(--forest); color: var(--white); padding: .9rem 2.25rem; border-radius: 50px; font-weight: 800; font-size: .95rem; border: none; cursor: pointer; transition: var(--ease); }
.btn-forest:hover { background: var(--forest-mid); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost-lime { display: inline-flex; align-items: center; gap: .4rem; color: var(--lime-dark); font-weight: 800; font-size: .9rem; background: none; border: none; cursor: pointer; transition: var(--ease); }
.btn-ghost-lime:hover { gap: .7rem; }

/* ── SERVICES ── */
.services-section { padding: 5.5rem 2rem; background: var(--cream); }
.services-section .container { max-width: 1200px; margin: 0 auto; }
.section-label { font-size: .75rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; color: var(--lime-dark); margin-bottom: .6rem; }
.section-title { font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--forest); margin-bottom: .75rem; }
.section-subtitle { color: var(--gray); font-size: 1rem; max-width: 520px; line-height: 1.75; }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3rem; flex-wrap: wrap; gap: 1.5rem; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.75rem; }
.service-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); transition: var(--ease); border: 1px solid var(--light-gray); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-img { height: 180px; overflow: hidden; position: relative; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-card:hover .service-img img { transform: scale(1.06); }
.service-body { padding: 1.5rem; }
.service-body h3 { font-size: 1.15rem; color: var(--forest); margin-bottom: .55rem; }
.service-body p { font-size: .875rem; color: var(--gray); line-height: 1.7; margin-bottom: 1rem; }
.service-price { font-size: .8rem; font-weight: 800; color: var(--lime-dark); text-transform: uppercase; letter-spacing: .06em; display: flex; align-items: center; gap: .4rem; }
.service-price i { font-size: .72rem; }

/* ── PROCESS ── */
.process-section { padding: 5rem 2rem; background: var(--white); }
.process-section .container { max-width: 1100px; margin: 0 auto; text-align: center; }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2.5rem; margin-top: 3.5rem; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 32px; left: 10%; right: 10%; height: 2px; background: repeating-linear-gradient(90deg, var(--lime) 0, var(--lime) 8px, transparent 8px, transparent 18px); z-index: 0; }
.p-step { position: relative; z-index: 1; }
.step-circle { width: 64px; height: 64px; background: var(--forest); border-radius: 50%; border: 4px solid var(--cream); box-shadow: 0 0 0 2px var(--lime); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--lime-light); margin: 0 auto 1.1rem; }
.p-step h3 { font-size: 1rem; color: var(--forest); margin-bottom: .45rem; }
.p-step p { font-size: .86rem; color: var(--gray); line-height: 1.65; }

/* ── ABOUT SPLIT ── */
.about-section { background: var(--cream2); padding: 5.5rem 2rem; }
.about-section .container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-stack { position: relative; }
.about-img-main { border-radius: 14px; overflow: hidden; height: 440px; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent { position: absolute; bottom: -1.5rem; left: -1.5rem; width: 180px; height: 140px; border-radius: 10px; overflow: hidden; border: 4px solid var(--white); box-shadow: var(--shadow-lg); }
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.years-badge { position: absolute; top: 1.5rem; right: -1.5rem; background: var(--lime-dark); border-radius: 50%; width: 90px; height: 90px; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); }
.years-badge .num { font-size: 1.8rem; font-weight: 900; color: var(--white); line-height: 1; }
.years-badge .lbl { font-size: .56rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--white); }
.about-text p { color: var(--gray); font-size: .97rem; line-height: 1.8; margin-bottom: 1.1rem; }
.checklist { display: flex; flex-direction: column; gap: .7rem; margin: 1.75rem 0; }
.checklist li { display: flex; align-items: center; gap: .7rem; font-size: .9rem; font-weight: 700; color: var(--text); }
.checklist li i { color: var(--lime); font-size: .9rem; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--forest); padding: 5rem 2rem; }
.testimonials .container { max-width: 1200px; margin: 0 auto; }
.testimonials .section-title { color: var(--white); }
.testimonials .section-label { color: var(--lime-light); }
.t-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.75rem; margin-top: 3rem; }
.t-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 1.75rem; transition: var(--ease); }
.t-card:hover { background: rgba(255,255,255,.1); }
.stars { color: #F59E0B; font-size: .88rem; margin-bottom: .75rem; }
.t-text { font-size: .92rem; color: rgba(255,255,255,.75); line-height: 1.75; margin-bottom: 1.25rem; font-style: italic; }
.t-author { display: flex; align-items: center; gap: .75rem; border-top: 1px solid rgba(255,255,255,.1); padding-top: 1rem; }
.t-author img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 2px solid var(--lime); }
.t-name { font-weight: 800; font-size: .88rem; color: var(--white); }
.t-detail { font-size: .75rem; color: rgba(255,255,255,.45); }

/* ── CONTACT / QUOTE FORM ── */
.contact-section { padding: 5rem 2rem; background: var(--cream); }
.contact-section .container { max-width: 1150px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: start; }
.contact-info h2 { font-size: 2.2rem; color: var(--forest); margin-bottom: .85rem; }
.contact-info p { color: var(--gray); font-size: .95rem; line-height: 1.8; margin-bottom: 2rem; }
.info-block { display: flex; align-items: flex-start; gap: .9rem; margin-bottom: 1.25rem; }
.i-icon { width: 44px; height: 44px; background: rgba(124,181,24,.12); border: 1px solid rgba(124,181,24,.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--forest); font-size: .95rem; flex-shrink: 0; }
.i-label { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; color: var(--lime-dark); margin-bottom: .2rem; }
.i-val { font-size: .93rem; color: var(--text); font-weight: 600; }
.service-area-tag { display: inline-flex; align-items: center; gap: .4rem; background: rgba(45,80,22,.08); border: 1px solid rgba(45,80,22,.15); color: var(--forest); padding: .35rem .85rem; border-radius: 50px; font-size: .8rem; font-weight: 800; margin: .3rem; }
.quote-form { background: var(--white); border-radius: 14px; padding: 2.5rem; box-shadow: var(--shadow-lg); border-top: 4px solid var(--lime); }
.quote-form h2 { font-size: 1.8rem; color: var(--forest); margin-bottom: .4rem; }
.quote-form p { font-size: .88rem; color: var(--gray); margin-bottom: 1.75rem; }
.form-group { display: flex; flex-direction: column; gap: .3rem; margin-bottom: 1.1rem; }
.form-group label { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--gray); }
.form-group input, .form-group select, .form-group textarea { border: 1.5px solid var(--light-gray); border-radius: var(--radius); padding: .72rem 1rem; font-size: .9rem; color: var(--text); background: var(--cream); transition: var(--ease); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--lime); background: var(--white); }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── FOOTER ── */
footer { background: var(--charcoal); color: rgba(255,255,255,.55); padding: 4rem 2rem 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 3rem; margin-bottom: 3rem; }
.footer-biz-name { font-size: 1.15rem; font-weight: 900; color: var(--white); display: block; margin-bottom: .85rem; }
.footer-brand p { font-size: .87rem; line-height: 1.75; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: .6rem; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,.07); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.55); font-size: .85rem; transition: var(--ease); }
.footer-social a:hover { background: var(--lime); color: var(--forest); }
.footer-col h4 { font-size: .95rem; font-weight: 900; color: var(--white); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 1.1rem; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { font-size: .865rem; color: rgba(255,255,255,.48); transition: var(--ease); }
.footer-col ul li a:hover { color: var(--lime-light); }
.footer-line { display: flex; align-items: flex-start; gap: .6rem; font-size: .865rem; margin-bottom: .65rem; }
.footer-line i { color: var(--lime); font-size: .78rem; margin-top: .25rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .75rem; font-size: .78rem; }
.footer-bottom a { color: var(--lime-light); }

/* ── PAGE HERO ── */
.page-hero { background: var(--forest); padding: 7rem 2rem 3.5rem; }
.page-hero .container { max-width: 1200px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .8rem; color: rgba(255,255,255,.45); margin-bottom: .85rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 700; }
.breadcrumb a { color: var(--lime-light); }
.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); color: var(--white); margin-bottom: .7rem; }
.page-hero p { color: rgba(255,255,255,.6); font-size: 1rem; max-width: 520px; }

/* ── HERO (index.html variant) ── */
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(45,80,22,.95) 40%, rgba(45,80,22,.5) 100%); }
.hero-badge { display: inline-flex; align-items: center; gap: .55rem; background: rgba(124,181,24,.15); border: 1px solid rgba(124,181,24,.4); color: var(--lime-light); padding: .4rem 1.1rem; border-radius: 50px; font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.5rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }
.btn-ghost-hero { display: inline-flex; align-items: center; gap: .5rem; background: transparent; color: var(--white); padding: .9rem 2.25rem; border-radius: 50px; font-weight: 700; font-size: .95rem; border: 2px solid rgba(255,255,255,.4); cursor: pointer; transition: var(--ease); }
.btn-ghost-hero:hover { border-color: var(--lime-light); color: var(--lime-light); }
.hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.15); padding-top: 2.5rem; }
.hstat { display: flex; flex-direction: column; gap: .2rem; }
.hstat strong { font-size: 2rem; font-weight: 900; color: var(--lime-light); line-height: 1; display: block; }
.hstat span { font-size: .72rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.hstat-div { width: 1px; background: rgba(255,255,255,.15); align-self: stretch; }

/* ── SERVICES (index.html variant) ── */
.section-header-center { text-align: center; margin-bottom: 3rem; }
.section-header-center .section-subtitle { max-width: 520px; margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.75rem; }
.service-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); transition: var(--ease); border: 1px solid var(--light-gray); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card img { width: 100%; height: 180px; object-fit: cover; transition: transform .4s ease; }
.service-card:hover img { transform: scale(1.05); }
.service-card-body { padding: 1.5rem; }
.svc-icon { width: 44px; height: 44px; background: rgba(45,80,22,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--forest); font-size: 1.1rem; margin-bottom: .75rem; }
.service-card-body h3 { font-size: 1.1rem; color: var(--forest); margin-bottom: .5rem; }
.service-card-body p { font-size: .875rem; color: var(--gray); line-height: 1.7; margin-bottom: 1rem; }
.svc-link { display: inline-flex; align-items: center; gap: .4rem; color: var(--lime-dark); font-size: .85rem; font-weight: 800; transition: var(--ease); }
.svc-link:hover { gap: .65rem; }

/* ── PROCESS (index.html variant) ── */
.process-section { padding: 5rem 2rem; background: var(--white); }
.process-section .container { max-width: 1100px; margin: 0 auto; text-align: center; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem; margin-top: 3.5rem; position: relative; align-items: start; }
.process-steps::before { content: ''; position: absolute; top: 32px; left: 15%; right: 15%; height: 2px; background: repeating-linear-gradient(90deg, var(--lime) 0, var(--lime) 8px, transparent 8px, transparent 18px); z-index: 0; }
.step { position: relative; z-index: 1; }
.step-num { font-size: .7rem; font-weight: 900; letter-spacing: .1em; color: var(--lime-dark); text-transform: uppercase; margin-bottom: .35rem; }
.step-icon { width: 64px; height: 64px; background: var(--forest); border-radius: 50%; border: 4px solid var(--white); box-shadow: 0 0 0 2px var(--lime); display: flex; align-items: center; justify-content: center; font-size: 1.35rem; color: var(--lime-light); margin: 0 auto .9rem; }
.step h3 { font-size: 1rem; color: var(--forest); margin-bottom: .4rem; }
.step p { font-size: .86rem; color: var(--gray); line-height: 1.65; }
.step-connector { display: none; }

/* ── ABOUT (index.html variant) ── */
.about-section { background: var(--cream2); padding: 5.5rem 2rem; }
.about-section .container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: 14px; overflow: hidden; height: 440px; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent { position: absolute; bottom: -1.5rem; left: -1.5rem; width: 180px; height: 140px; border-radius: 10px; overflow: hidden; border: 4px solid var(--white); box-shadow: var(--shadow-lg); }
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-years-badge { position: absolute; top: 1.5rem; right: -1.5rem; background: var(--lime-dark); border-radius: 50%; width: 90px; height: 90px; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); }
.badge-num { font-size: 1.8rem; font-weight: 900; color: var(--white); line-height: 1; }
.badge-text { font-size: .52rem; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; color: var(--white); text-align: center; }
.about-text p { color: var(--gray); font-size: .97rem; line-height: 1.8; margin-bottom: 1.1rem; }
.about-checks { display: flex; flex-direction: column; gap: .65rem; margin: 1.75rem 0; }
.check-item { display: flex; align-items: center; gap: .7rem; font-size: .9rem; font-weight: 700; color: var(--text); }
.check-item i { color: var(--lime); font-size: .9rem; }

/* ── TESTIMONIALS (index.html variant) ── */
.testimonials { background: var(--forest); padding: 5rem 2rem; }
.testimonials .container { max-width: 1200px; margin: 0 auto; }
.t-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.75rem; margin-top: 3rem; }
.t-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 1.75rem; transition: var(--ease); }
.t-card:hover { background: rgba(255,255,255,.1); }
.t-stars { color: #F59E0B; font-size: .88rem; margin-bottom: .75rem; }
.t-text { font-size: .92rem; color: rgba(255,255,255,.75); line-height: 1.75; margin-bottom: 1.25rem; font-style: italic; }
.t-author { display: flex; align-items: center; gap: .75rem; border-top: 1px solid rgba(255,255,255,.1); padding-top: 1rem; }
.t-author img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 2px solid var(--lime); }
.t-name { font-weight: 800; font-size: .88rem; color: var(--white); }
.t-location { font-size: .75rem; color: rgba(255,255,255,.45); }

/* ── CONTACT BAND ── */
.contact-band { background: var(--cream); padding: 5rem 2rem; border-top: 3px solid var(--lime); }
.contact-band .container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.cband-left h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--forest); margin-bottom: .75rem; }
.cband-left p { color: var(--gray); font-size: .97rem; line-height: 1.8; margin-bottom: 1.75rem; }
.contact-details-row { display: flex; flex-direction: column; gap: .75rem; }
.cd-item { display: flex; align-items: center; gap: .7rem; color: var(--text); font-size: .9rem; font-weight: 600; }
.cd-item i { color: var(--forest); width: 18px; }
.cband-form { background: var(--white); border-radius: 14px; padding: 2.25rem; box-shadow: var(--shadow-lg); border-top: 4px solid var(--lime); }
.cband-form h3 { font-size: 1.5rem; color: var(--forest); margin-bottom: 1.5rem; font-weight: 900; }
.cband-form input, .cband-form select, .cband-form textarea { display: block; width: 100%; border: 1.5px solid var(--light-gray); border-radius: var(--radius); padding: .75rem 1rem; font-size: .9rem; color: var(--text); background: var(--cream); margin-bottom: 1rem; transition: var(--ease); font-family: 'Nunito', sans-serif; }
.cband-form input:focus, .cband-form select:focus, .cband-form textarea:focus { outline: none; border-color: var(--lime); background: var(--white); }
.cband-form button { display: flex; align-items: center; justify-content: center; gap: .5rem; width: 100%; background: var(--lime-dark); color: var(--white); border: none; border-radius: 50px; padding: .85rem; font-size: 1rem; font-weight: 800; cursor: pointer; transition: var(--ease); }
.cband-form button:hover { background: var(--lime); color: var(--forest); transform: translateY(-2px); }

/* ── CTA BAND ── */
.cta-band { background: var(--forest); padding: 3.5rem 2rem; }
.cta-band .container { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--white); }
.cta-band-text p { color: rgba(255,255,255,.8); font-size: .97rem; margin-top: .4rem; }

/* ── SERVICES DETAIL PAGE ── */
.svc-detail-section { padding: 5rem 2rem; background: var(--white); }
.svc-detail-section .container { max-width: 1200px; margin: 0 auto; }
.svc-detail-row { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: center; margin-bottom: 5rem; padding-bottom: 4.5rem; border-bottom: 1px solid var(--light-gray); }
.svc-detail-row:last-child { border-bottom: none; margin-bottom: 0; }
.svc-reverse { direction: rtl; }
.svc-reverse > * { direction: ltr; }
.svc-detail-img img { border-radius: 12px; width: 100%; height: 360px; object-fit: cover; }
.svc-detail-icon { width: 56px; height: 56px; background: rgba(45,80,22,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--forest); font-size: 1.4rem; margin-bottom: 1rem; }
.svc-detail-text h2 { font-size: 2rem; color: var(--forest); margin-bottom: .75rem; }
.svc-detail-text p { color: var(--gray); font-size: .97rem; line-height: 1.8; margin-bottom: 1rem; }
.svc-list { display: flex; flex-direction: column; gap: .6rem; margin: 1.5rem 0; }
.svc-list li { display: flex; align-items: center; gap: .7rem; font-size: .9rem; font-weight: 700; color: var(--text); }
.svc-list li i { color: var(--lime); }

/* ── CONTACT PAGE ── */
.contact-section { padding: 5rem 2rem; background: var(--white); }
.contact-section .container { max-width: 1150px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: start; }
.contact-form-box { background: var(--white); border-radius: 14px; padding: 2.5rem; box-shadow: var(--shadow-lg); border-top: 4px solid var(--lime); }
.contact-form-box h2 { font-size: 1.8rem; color: var(--forest); margin-bottom: .4rem; }
.contact-form-box p { font-size: .88rem; color: var(--gray); margin-bottom: 1.75rem; }
.form-note { font-size: .8rem; color: var(--gray); text-align: center; margin-top: .75rem; }
.contact-info-panel { display: flex; flex-direction: column; gap: 1.5rem; }
.cip-block { background: var(--cream); border-radius: 12px; padding: 1.75rem; }
.cip-block h3 { font-size: 1.2rem; color: var(--forest); margin-bottom: 1.25rem; }
.ci-item { display: flex; align-items: flex-start; gap: .85rem; margin-bottom: 1.1rem; }
.ci-icon { width: 40px; height: 40px; background: rgba(45,80,22,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--forest); font-size: .95rem; flex-shrink: 0; }
.ci-label { font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--lime-dark); margin-bottom: .15rem; }
.ci-val { font-size: .9rem; color: var(--text); font-weight: 600; line-height: 1.55; }
.area-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.area-tags span { background: rgba(45,80,22,.08); border: 1px solid rgba(45,80,22,.15); color: var(--forest); padding: .3rem .85rem; border-radius: 50px; font-size: .8rem; font-weight: 800; }
.cip-guarantee { display: flex; align-items: flex-start; gap: 1rem; background: var(--forest); border-radius: 12px; padding: 1.5rem; }
.cip-guarantee i { color: var(--lime-light); font-size: 1.75rem; flex-shrink: 0; }
.guar-title { font-size: .97rem; font-weight: 900; color: var(--white); margin-bottom: .3rem; }
.guar-sub { font-size: .85rem; color: rgba(255,255,255,.7); line-height: 1.55; }

/* ── SHARED ── */
.logo-icon { width: 44px; height: 44px; background: var(--forest); border-radius: 50% 50% 50% 10%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--lime-light); transform: rotate(-20deg); flex-shrink: 0; }
.logo-icon i { transform: rotate(20deg); }
.logo-text .brand-name { font-size: 1.15rem; font-weight: 900; color: var(--forest); line-height: 1.1; }
.logo-text .brand-sub { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--forest); }
.btn-nav-cta { background: var(--lime-dark) !important; color: var(--white) !important; padding: .5rem 1.2rem; border-radius: 50px !important; font-weight: 800 !important; }
.footer-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: .85rem; }
.footer-logo span { font-size: 1.05rem; font-weight: 900; color: var(--white); }
.footer-leaf { width: 36px; height: 36px; background: var(--lime-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: .95rem; }
.topbar-inner { max-width: 1400px; margin: 0 auto; width: 100%; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-section .container { grid-template-columns: 1fr; }
  .about-img-accent { display: none; }
  .years-badge { right: 1rem; }
  .contact-section .container { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-band .container { grid-template-columns: 1fr; }
  .svc-detail-row { grid-template-columns: 1fr; }
  .svc-reverse { direction: ltr; }
  .svc-detail-img img { height: 260px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: var(--white); padding: 1.5rem 2rem; gap: 1.25rem; border-top: 2px solid var(--light-gray); z-index: 998; box-shadow: var(--shadow); }
  .topbar { display: none; }
  .process-steps::before { display: none; }
  .form-row-2 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
/* ── YTS Demo Labels ── */
.btn-back-yts { background: rgba(30,58,138,.88) !important; color: #fff !important; padding: .42rem 1.05rem !important; border-radius: 999px !important; font-size: .78rem !important; font-weight: 700 !important; letter-spacing: .04em !important; white-space: nowrap !important; border: 1px solid rgba(99,162,251,.25) !important; transition: background .2s ease !important; }
.btn-back-yts::after { display: none !important; }
.btn-back-yts:hover { background: rgba(29,78,216,1) !important; color: #fff !important; }
.powered-yts { margin: 1.25rem 0 0; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.08); text-align: center; font-size: .78rem; color: rgba(255,255,255,.45); }
.powered-yts a { color: #93c5fd; font-weight: 700; text-decoration: none; }
.powered-yts a:hover { text-decoration: underline; }
