/* ===================================================
   FRAME FRESH CPT – STYLESHEET v2
   Colors: Navy #0d2340  Green #5cb800  White #fff
   =================================================== */

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

:root {
  --navy:   #0d2340;
  --navy2:  #122b4f;
  --green:  #5cb800;
  --green2: #4da000;
  --white:  #ffffff;
  --light:  #f4f7fb;
  --light2: #eef3fa;
  --text:   #1a2a3a;
  --muted:  #5a6a7a;
  --border: #d8e4f0;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(13,35,64,.10);
  --shadow-lg: 0 12px 48px rgba(13,35,64,.16);
  --trans:  all .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }

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

.green  { color: var(--green); }
.white  { color: var(--white); }
.navy   { color: var(--navy); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: var(--white);
  padding: 14px 28px; border-radius: 7px;
  font-weight: 700; font-size: .95rem;
  border: 2px solid var(--green);
  cursor: pointer; transition: var(--trans);
  white-space: nowrap;
}
.btn-primary:hover { background: var(--green2); border-color: var(--green2); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(92,184,0,.35); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 14px 28px; border-radius: 7px;
  font-weight: 700; font-size: .95rem;
  border: 2px solid rgba(255,255,255,.6);
  cursor: pointer; transition: var(--trans);
}
.btn-secondary:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--navy);
  padding: 12px 24px; border-radius: 7px;
  font-weight: 700; font-size: .9rem;
  border: 2px solid var(--navy);
  cursor: pointer; transition: var(--trans);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-outline-light {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 14px 28px; border-radius: 7px;
  font-weight: 700; font-size: .95rem;
  border: 2px solid rgba(255,255,255,.55);
  cursor: pointer; transition: var(--trans);
}
.btn-outline-light:hover { background: rgba(255,255,255,.08); border-color: var(--white); }

.btn-sm  { padding: 10px 20px !important; font-size: .85rem !important; }
.btn-full { width: 100%; justify-content: center; font-size: 1.05rem; padding: 16px; }
.btn-lg  { padding: 18px 36px !important; font-size: 1.05rem !important; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--navy);
  transition: box-shadow .3s, background .3s;
}
.navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.4); background: #091c34; }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}

.logo { display: flex; align-items: baseline; gap: 4px; }
.logo-frame { font-size: 1.55rem; font-weight: 900; color: var(--white); letter-spacing: -.5px; }
.logo-fresh { font-size: 1.55rem; font-weight: 900; color: var(--green); letter-spacing: -.5px; }
.logo-cpt   { font-size: .9rem; font-weight: 700; color: rgba(255,255,255,.42); margin-left: 3px; letter-spacing: .5px; }

nav { display: flex; align-items: center; }

.nav-links {
  display: flex; align-items: center; gap: 2px; list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.75); font-weight: 600; font-size: .88rem;
  padding: 8px 14px; border-radius: 6px; transition: var(--trans);
  letter-spacing: .2px;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); background: rgba(255,255,255,.09); }
.btn-nav {
  background: var(--green) !important; color: var(--white) !important;
  padding: 9px 20px !important; border-radius: 6px !important;
  margin-left: 8px;
}
.btn-nav:hover { background: var(--green2) !important; box-shadow: 0 4px 14px rgba(92,184,0,.4) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--trans); }

/* ===== HERO ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3d6b 60%, #0d2340 100%);
  padding: 96px 0 80px;
  overflow: hidden;
  min-height: 90vh;
  display: flex; align-items: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1570129477492-45c003edd2be?w=1600&q=70') center/cover no-repeat;
  opacity: .09;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(13,35,64,.97) 45%, rgba(13,35,64,.55) 100%);
}

.hero-inner {
  position: relative; z-index: 2;
  display: flex;
  align-items: center;
  gap: 56px;
  width: 100%;
}

.hero-content {
  flex: 1;
  min-width: 0;
  max-width: 580px;
}

.hero-eyebrow {
  color: var(--green); font-weight: 700; font-size: .78rem;
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 2px; background: var(--green); border-radius: 2px; }

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 900; line-height: 1.06; margin-bottom: 24px;
  letter-spacing: -.5px;
}

.hero-sub {
  color: rgba(255,255,255,.72); font-size: 1.1rem; margin-bottom: 38px;
  line-height: 1.75; max-width: 540px;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px; padding: 7px 16px;
  color: rgba(255,255,255,.82); font-size: .8rem; font-weight: 600;
  backdrop-filter: blur(4px);
}
.badge i { color: var(--green); font-size: .85rem; }

/* Before/After */
.hero-before-after {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.ba-card {
  position: relative; border-radius: 14px; overflow: hidden;
  width: 215px; height: 268px; box-shadow: 0 16px 56px rgba(0,0,0,.55);
  border: 2px solid rgba(255,255,255,.08);
}
.ba-card img { width: 100%; height: 100%; object-fit: cover; }
.ba-label {
  position: absolute; bottom: 12px; left: 12px;
  font-weight: 800; font-size: .74rem; letter-spacing: 1.5px;
  padding: 5px 12px; border-radius: 5px; text-transform: uppercase;
}
.ba-label.before { background: rgba(0,0,0,.8); color: var(--white); }
.ba-label.after  { background: var(--green); color: var(--white); }
.ba-arrow { color: var(--green); font-size: 1.6rem; filter: drop-shadow(0 2px 6px rgba(0,0,0,.4)); }

/* ===== PAGE BANNER (inner pages) ===== */
.page-banner {
  background: linear-gradient(105deg, var(--navy) 0%, #1a3d6b 100%);
  padding: 76px 0 64px;
  position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  opacity: .06; background-size: cover; background-position: center;
}
.page-banner.services-banner::before { background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1400&q=60'); }
.page-banner.about-banner::before   { background-image: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1400&q=60'); }
.page-banner.contact-banner::before { background-image: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1400&q=60'); }

.page-banner-content { position: relative; z-index: 1; }
.page-banner .eyebrow { margin-bottom: 10px; }
.page-banner h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 14px;
  letter-spacing: -.3px;
}
.page-banner p { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 580px; }

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.42); font-size: .78rem; font-weight: 600;
  margin-bottom: 22px; letter-spacing: .3px;
}
.breadcrumb a { color: rgba(255,255,255,.52); transition: color .2s; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb i { font-size: .6rem; }

/* ===== SECTIONS ===== */
.section { padding: 92px 0; }
.section-sm { padding: 64px 0; }
.dark-section { background: var(--navy); color: var(--white); }
.light-section { background: var(--light); }
.light2-section { background: var(--light2); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header.light h2 { color: var(--white); }
.section-header.light .section-sub { color: rgba(255,255,255,.62); }
.section-header.left { text-align: left; }

.eyebrow {
  font-size: .76rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--green); margin-bottom: 10px;
  display: block;
}

.section-header h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800; line-height: 1.15; margin-bottom: 16px;
  letter-spacing: -.3px;
}
.section-sub { color: var(--muted); font-size: 1.05rem; max-width: 620px; margin: 0 auto; line-height: 1.75; }

/* ===== INTRO STRIP ===== */
.intro-strip {
  background: var(--white);
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.intro-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
}
.intro-item {
  display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
  padding-left: 24px; border-left: 3px solid var(--green);
}
.intro-item i { font-size: 1.8rem; color: var(--green); }
.intro-item h3 { font-size: 1.05rem; font-weight: 800; color: var(--navy); }
.intro-item p { color: var(--muted); font-size: .92rem; line-height: 1.65; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 44px;
}

.service-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow); transition: var(--trans);
  display: flex; flex-direction: column; gap: 14px;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(92,184,0,.35); }
.service-card.featured { border-color: var(--green); background: linear-gradient(135deg, #f6fff0, var(--white)); }
.service-card.residential { border-color: var(--navy); }

.service-icon {
  width: 54px; height: 54px; background: var(--light);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
}
.service-icon i { font-size: 1.4rem; color: var(--navy); }
.service-card.featured .service-icon { background: #e6ffd0; }
.service-card.featured .service-icon i { color: var(--green); }

.service-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--navy); }
.service-price { font-size: .95rem; color: var(--muted); }
.service-price strong { color: var(--green); font-size: 1.15rem; }

.service-card ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.service-card ul li { display: flex; align-items: center; gap: 9px; font-size: .9rem; color: var(--text); }
.service-card ul li i { color: var(--green); font-size: .82rem; }
.service-card p { color: var(--muted); font-size: .92rem; line-height: 1.65; }

/* Callout banner */
.callout-banner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
  background: var(--navy); color: var(--white);
  border-radius: var(--radius); padding: 28px 36px;
}
.callout-left { display: flex; align-items: center; gap: 18px; }
.callout-left i { font-size: 2.2rem; color: var(--green); }
.callout-left strong { font-size: 1.2rem; display: block; }
.callout-left p { color: rgba(255,255,255,.65); font-size: .9rem; margin: 0; }

/* ===== HOW IT WORKS ===== */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.process-step {
  position: relative; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute; top: 44px; left: calc(50% + 46px);
  width: calc(100% - 46px); height: 2px;
  background: linear-gradient(to right, var(--green), rgba(92,184,0,.15));
  z-index: 0;
}
.process-num {
  width: 90px; height: 90px;
  background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; font-weight: 900; color: var(--white);
  position: relative; z-index: 1;
  box-shadow: 0 6px 28px rgba(92,184,0,.4);
}
.process-num i { font-size: 1.5rem; }
.process-step h4 { font-size: 1rem; font-weight: 800; color: var(--navy); }
.process-step p { color: var(--muted); font-size: .88rem; line-height: 1.65; }

/* ===== SPLIT SECTION ===== */
.split-section {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.split-section.reverse .split-img { order: 2; }
.split-section.reverse .split-text { order: 1; }
.split-img {
  position: relative; border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-img img { width: 100%; height: 440px; object-fit: cover; }
.split-img-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--green); color: var(--white);
  padding: 10px 22px; border-radius: 8px;
  font-weight: 800; font-size: .88rem;
}
.split-text .eyebrow { margin-bottom: 10px; }
.split-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800; line-height: 1.15; margin-bottom: 16px;
  color: var(--navy); letter-spacing: -.3px;
}
.split-text p { color: var(--muted); margin-bottom: 20px; line-height: 1.78; }

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 30px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .95rem; color: var(--text);
}
.feature-list li i { color: var(--green); margin-top: 3px; font-size: .9rem; flex-shrink: 0; }
.feature-list li strong { color: var(--navy); }

/* ===== BENEFITS ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px; margin-bottom: 24px;
}

.benefit-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 30px 26px;
  transition: var(--trans);
}
.benefit-card:hover { background: rgba(255,255,255,.09); transform: translateY(-3px); border-color: rgba(92,184,0,.3); }
.benefit-icon {
  width: 54px; height: 54px;
  background: rgba(92,184,0,.12); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.benefit-icon i { font-size: 1.4rem; color: var(--green); }
.benefit-card h4 { font-size: 1.02rem; font-weight: 800; margin-bottom: 10px; color: var(--white); }
.benefit-card p  { font-size: .9rem; color: rgba(255,255,255,.62); line-height: 1.68; }

/* Values grid (light background) */
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.value-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  box-shadow: var(--shadow); transition: var(--trans);
  border-top: 4px solid var(--green);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.value-icon {
  width: 52px; height: 52px; background: #edffd9;
  border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.value-icon i { font-size: 1.35rem; color: var(--green); }
.value-card h4 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.value-card p  { font-size: .9rem; color: var(--muted); line-height: 1.65; }

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px; margin-bottom: 52px;
}
.testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 30px 26px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: 14px; left: 26px;
  font-size: 4.5rem; color: var(--green); opacity: .35;
  line-height: 1; font-family: Georgia, serif;
}
.stars { color: #ffc107; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p { color: rgba(255,255,255,.78); font-size: .95rem; margin-bottom: 18px; font-style: italic; line-height: 1.68; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author .avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(92,184,0,.2); display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--green); font-size: .88rem; flex-shrink: 0;
}
.testimonial-author strong { color: var(--green); font-size: .88rem; display: block; }
.testimonial-author span  { color: rgba(255,255,255,.42); font-size: .8rem; }

/* Light testimonials variant */
.testimonials-light .testimonial-card {
  background: var(--white); border: 1.5px solid var(--border); box-shadow: var(--shadow);
}
.testimonials-light .testimonial-card p { color: var(--muted); }
.testimonials-light .testimonial-card::before { color: var(--green); opacity: .22; }
.testimonials-light .testimonial-author strong { color: var(--navy); }
.testimonials-light .testimonial-author span  { color: var(--muted); }
.testimonials-light .testimonial-author .avatar { background: #edffd9; }

/* Stats */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  background: rgba(92,184,0,.08); border: 1px solid rgba(92,184,0,.22);
  border-radius: var(--radius); padding: 36px 28px; text-align: center;
}
.stat-num { display: block; font-size: 2.5rem; font-weight: 900; color: var(--green); margin-bottom: 4px; }
.stat-label { font-size: .8rem; color: rgba(255,255,255,.62); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
  gap: 24px;
}

.price-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 32px 24px;
  box-shadow: var(--shadow); text-align: center;
  display: flex; flex-direction: column; gap: 16px;
  position: relative; transition: var(--trans);
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.price-card.highlight { border-color: var(--green); background: #f5fff0; }
.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: var(--white);
  font-size: .72rem; font-weight: 800; letter-spacing: 1.5px;
  padding: 4px 16px; border-radius: 20px; text-transform: uppercase;
  white-space: nowrap;
}
.price-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--navy); }
.price-amount { font-size: 2.2rem; font-weight: 900; color: var(--green); line-height: 1.1; }
.price-amount span { font-size: .95rem; color: var(--muted); font-weight: 600; }
.price-card ul { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 9px; }
.price-card ul li { display: flex; align-items: center; gap: 9px; font-size: .9rem; }
.price-card ul li i { color: var(--green); }
.price-card p { color: var(--muted); font-size: .9rem; }
.price-card > a { margin-top: auto; }

.callout-card { background: var(--navy); color: var(--white); border-color: var(--navy); }
.callout-card h3 { color: var(--white); }
.callout-card .price-amount { color: var(--green); }
.price-icon-large { font-size: 2.8rem; color: var(--green); }
.waived-note { color: rgba(255,255,255,.75); font-size: .88rem; display: flex; align-items: center; gap: 8px; justify-content: center; }
.waived-note i { color: var(--green); }
.callout-card > a { margin-top: auto; }

/* ===== CONTACT ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px; align-items: start;
}

.contact-info h2 { font-size: 2rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.contact-info > p { color: rgba(255,255,255,.65); margin-bottom: 32px; line-height: 1.75; }

.contact-items { display: flex; flex-direction: column; gap: 14px; }
.contact-item {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px; padding: 16px 20px; transition: var(--trans);
}
.contact-item:hover { background: rgba(255,255,255,.09); border-color: rgba(92,184,0,.3); }
.contact-item i { font-size: 1.3rem; color: var(--green); width: 24px; text-align: center; }
.contact-item strong { display: block; color: var(--white); font-size: .88rem; margin-bottom: 2px; }
.contact-item span { color: rgba(255,255,255,.58); font-size: .88rem; }
.contact-item.whatsapp i { color: #25D366; }

/* Contact Form */
.contact-form {
  background: var(--white); border-radius: 16px;
  padding: 40px; box-shadow: 0 12px 56px rgba(0,0,0,.28);
  display: flex; flex-direction: column; gap: 20px;
}

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

.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-weight: 700; font-size: .78rem; color: var(--navy);
  text-transform: uppercase; letter-spacing: .4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid #d2deee; border-radius: 8px;
  padding: 12px 16px; font-size: .95rem; font-family: inherit;
  color: var(--text); background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(92,184,0,.14); }
.form-group input.error,
.form-group textarea.error { border-color: #e53e3e; box-shadow: 0 0 0 3px rgba(229,62,62,.1); }

.form-note { font-size: .78rem; color: var(--muted); text-align: center; }

.form-success {
  display: none; align-items: center; gap: 10px; justify-content: center;
  background: #e8ffd6; border: 1.5px solid var(--green);
  border-radius: 10px; padding: 16px; color: #2a6000; font-weight: 700;
}
.form-success i { font-size: 1.3rem; color: var(--green); }

.form-error {
  display: none; align-items: center; gap: 10px; justify-content: center;
  background: #fff0f0; border: 1.5px solid #e53e3e;
  border-radius: 10px; padding: 16px; color: #9b1c1c; font-weight: 700;
}
.form-error i { font-size: 1.3rem; color: #e53e3e; }

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(105deg, var(--green2) 0%, var(--green) 100%);
  padding: 72px 0; text-align: center;
}
.cta-band h2 { font-size: clamp(1.9rem, 3vw, 2.7rem); font-weight: 900; color: var(--white); margin-bottom: 14px; letter-spacing: -.3px; }
.cta-band p { color: rgba(255,255,255,.85); font-size: 1.08rem; margin-bottom: 36px; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.btn-cta-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--green);
  padding: 16px 36px; border-radius: 8px;
  font-weight: 800; font-size: 1rem; transition: var(--trans);
}
.btn-cta-white:hover { background: #f0fff0; transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,.2); }
.btn-cta-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--white);
  padding: 16px 36px; border-radius: 8px;
  font-weight: 800; font-size: 1rem; transition: var(--trans);
  border: 2px solid rgba(255,255,255,.65);
}
.btn-cta-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

/* ===== IMAGE GALLERY STRIP ===== */
.gallery-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  height: 240px; overflow: hidden;
  border-radius: var(--radius); gap: 3px;
}
.gallery-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-strip img:hover { transform: scale(1.06); }

/* ===== SERVICE AREA BANNER ===== */
.area-banner {
  background: linear-gradient(105deg, #091c34, var(--navy2));
  border-radius: var(--radius); padding: 36px 40px;
  display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 28px;
  border: 1px solid rgba(255,255,255,.06);
  margin-top: 52px;
}
.area-text h3 { font-size: 1.3rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.area-text p  { color: rgba(255,255,255,.58); font-size: .92rem; }
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.area-tag {
  background: rgba(92,184,0,.1); border: 1px solid rgba(92,184,0,.25);
  color: var(--green); padding: 5px 14px; border-radius: 20px;
  font-size: .8rem; font-weight: 700;
}

/* ===== FOOTER ===== */
.footer { background: #080f1c; padding: 68px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
  gap: 44px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand .footer-logo { display: flex; align-items: baseline; gap: 4px; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,.38); font-size: .85rem; line-height: 1.75; max-width: 260px; }
.footer-col h4 {
  color: var(--white); font-size: .8rem; font-weight: 800;
  letter-spacing: 1px; margin-bottom: 18px; text-transform: uppercase;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.48); font-size: .88rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--green); }
.footer-contact-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.52); font-size: .88rem; margin-bottom: 12px;
}
.footer-contact-item i { color: var(--green); width: 16px; font-size: .9rem; }
.footer-contact-item a { color: rgba(255,255,255,.52); transition: color .2s; }
.footer-contact-item a:hover { color: var(--green); }
.footer-bottom {
  padding: 20px 24px; text-align: center;
  color: rgba(255,255,255,.25); font-size: .78rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .split-section { grid-template-columns: 1fr; gap: 44px; }
  .split-section.reverse .split-img,
  .split-section.reverse .split-text { order: 0; }
  .split-img img { height: 340px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .process-step:not(:last-child)::after { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1000px) {
  .hero-before-after { display: none; }
  .hero-content { max-width: 100%; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .intro-grid { grid-template-columns: 1fr; gap: 28px; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); height: auto; }
  .gallery-strip img { height: 180px; }
}

@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .nav-links {
    display: none; flex-direction: column; align-items: flex-start;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--navy); padding: 16px 24px 28px;
    gap: 4px; border-top: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero { padding: 64px 0 52px; min-height: auto; }
  .hero h1 { font-size: 2.1rem; }
  .hero-ctas { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .contact-form { padding: 26px 18px; }
  .callout-banner { flex-direction: column; align-items: flex-start; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .cta-btns { flex-direction: column; }
  .btn-cta-white, .btn-cta-outline { width: 100%; justify-content: center; }
  .area-banner { flex-direction: column; }
  .page-banner { padding: 56px 0 48px; }
}
