/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Bai Jamjuree', 'Prompt', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1a3329;
  background: #f4faf6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; }

/* ===== DESIGN TOKENS ===== */
:root {
  --green-50:  #ecfdf3;
  --green-100: #d1fadf;
  --green-200: #a6f4c5;
  --green-300: #6ce9a6;
  --green-400: #32d583;
  --green-500: #12b76a;
  --green-600: #039855;
  --green-700: #027a48;
  --green-800: #05603a;
  --green-900: #054f31;

  --orange-100: #fff4e6;
  --orange-300: #ffb070;
  --orange-500: #ff7a1a;
  --orange-600: #ed6606;
  --orange-700: #c64f00;

  --ink-900: #0d2818;
  --ink-700: #1a3329;
  --ink-500: #4a6358;
  --ink-300: #8aa39a;
  --ink-100: #e6efe9;

  --bg:        #f4faf6;
  --bg-alt:    #ffffff;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 6px rgba(13,40,24,.06);
  --shadow:    0 8px 24px rgba(13,40,24,.08);
  --shadow-lg: 0 18px 50px rgba(13,40,24,.14);
  --shadow-orange: 0 10px 28px rgba(255,122,26,.35);

  --container: 1180px;
}

/* ===== UTILITIES ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.section { padding: 80px 0; position: relative; }
.section-title {
  font-family: 'Prompt', sans-serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink-900);
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.section-title span { color: var(--green-600); }
.section-sub {
  text-align: center;
  color: var(--ink-500);
  font-size: 16px;
  max-width: 640px;
  margin: 0 auto 48px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-100);
  color: var(--green-700);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: ''; width: 7px; height: 7px;
  background: var(--green-500); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(18,183,106,.2);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(18,183,106,.2); }
  50%     { box-shadow: 0 0 0 8px rgba(18,183,106,0); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  font-family: 'Prompt', sans-serif;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-call {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: #fff;
  box-shadow: var(--shadow-orange);
}
.btn-call:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(255,122,26,.5); }
.btn-line {
  background: #06c755;
  color: #fff;
  box-shadow: 0 10px 28px rgba(6,199,85,.35);
}
.btn-line:hover { transform: translateY(-2px); background: #05a948; }
.btn-ghost {
  background: #fff;
  color: var(--green-700);
  border: 2px solid var(--green-200);
}
.btn-ghost:hover { background: var(--green-50); border-color: var(--green-400); }

/* ===== HEADER ===== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(13,40,24,.06);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
  gap: 18px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 44px; width: auto; }
.logo-text {
  font-family: 'Prompt', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--ink-900);
  line-height: 1.1;
}
.logo-text small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-500);
}
.nav { display: flex; gap: 26px; }
.nav a {
  font-weight: 600; font-size: 15px;
  color: var(--ink-700);
  position: relative; padding: 6px 0;
  transition: color .2s;
}
.nav a:hover { color: var(--green-600); }
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--green-500);
  transition: width .25s ease;
}
.nav a:hover::after { width: 100%; }
.header-cta { display: flex; gap: 10px; }
.header-cta .btn { padding: 11px 18px; font-size: 14px; }

.menu-toggle {
  display: none;
  background: var(--green-50);
  width: 42px; height: 42px;
  border-radius: 10px;
  align-items: center; justify-content: center;
}
.menu-toggle span {
  width: 22px; height: 2px; background: var(--ink-900);
  position: relative; transition: .3s;
}
.menu-toggle span::before, .menu-toggle span::after {
  content: ''; position: absolute; left: 0;
  width: 22px; height: 2px; background: var(--ink-900);
  transition: .3s;
}
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after  { top:  7px; }

@media (max-width: 960px) {
  .nav, .header-cta .btn-ghost { display: none; }
  .menu-toggle { display: flex; }
  .header-cta .btn { padding: 9px 14px; font-size: 13px; }
  .logo-text { font-size: 15px; }
  .logo-text small { display: none; }
  .logo img { height: 38px; }
}

.mobile-menu {
  display: none;
  position: fixed; top: 76px; left: 0; right: 0;
  background: #fff;
  padding: 22px;
  box-shadow: var(--shadow);
  z-index: 99;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 14px 4px;
  font-weight: 600;
  border-bottom: 1px solid var(--ink-100);
  color: var(--ink-700);
}

/* ===== EMERGENCY BAR ===== */
.emergency-bar {
  background: linear-gradient(90deg, var(--orange-600), var(--orange-500));
  color: #fff;
  padding: 12px 0;
  text-align: center;
  font-weight: 600;
  font-size: 14.5px;
}
.emergency-bar a {
  background: #fff; color: var(--orange-700);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 800;
  margin-left: 6px;
  display: inline-block;
  white-space: nowrap;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 70px 0 80px;
  background:
    radial-gradient(circle at 12% 20%, rgba(166,244,197,.55) 0%, transparent 45%),
    radial-gradient(circle at 88% 80%, rgba(255,176,112,.35) 0%, transparent 45%),
    linear-gradient(180deg, #f4faf6 0%, #e6f5eb 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(13,40,24,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,40,24,.025) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative; z-index: 2;
}
.hero h1 {
  font-family: 'Prompt', sans-serif;
  font-size: clamp(30px, 4.6vw, 50px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin-bottom: 18px;
}
.hero h1 .hl {
  color: var(--green-600);
  position: relative;
  display: inline-block;
}
.hero h1 .hl::after {
  content: ''; position: absolute; bottom: 4px; left: 0;
  width: 100%; height: 12px;
  background: var(--orange-300);
  opacity: .5;
  z-index: -1;
  border-radius: 4px;
}
.hero p.lead {
  font-size: 17px;
  color: var(--ink-500);
  margin-bottom: 28px;
  max-width: 540px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-ctas .btn { padding: 15px 26px; font-size: 15px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 540px;
}
.hero-stat {
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(18,183,106,.18);
  padding: 14px;
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}
.hero-stat .num {
  font-family: 'Prompt', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--green-700);
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 12px; color: var(--ink-500);
  margin-top: 4px;
}

.hero-visual { position: relative; }
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  transform: rotate(2deg);
  transition: transform .5s;
}
.hero-img-wrap:hover { transform: rotate(0deg) scale(1.02); }
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 10px;
  font-weight: 600;
  font-size: 13.5px;
}
.hero-badge .icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.hb-1 { top: 30px; left: -20px; transform: rotate(-4deg); animation: float 4s ease-in-out infinite; }
.hb-1 .icon { background: var(--green-100); }
.hb-2 { bottom: 60px; right: -15px; transform: rotate(3deg); animation: float 4s ease-in-out infinite reverse; }
.hb-2 .icon { background: var(--orange-100); }
@keyframes float {
  0%,100% { transform: translateY(0) rotate(-4deg); }
  50%     { transform: translateY(-10px) rotate(-4deg); }
}

@media (max-width: 880px) {
  .hero { padding: 50px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 360px; margin: 0 auto; width: 100%; }
}
@media (max-width: 480px) {
  .hero-ctas .btn { width: 100%; }
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: #fff;
  padding: 16px 0;
  border-bottom: 1px solid var(--ink-100);
  font-size: 14px;
}
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.breadcrumb li { display: flex; align-items: center; gap: 6px; color: var(--ink-500); }
.breadcrumb li:not(:last-child)::after { content: '›'; color: var(--ink-300); margin-left: 4px; }
.breadcrumb a { color: var(--green-700); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb li:last-child { color: var(--ink-900); font-weight: 600; }

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature-card {
  background: #fff;
  padding: 28px 22px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--ink-100);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-500), var(--orange-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--green-200); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--green-100), var(--green-200));
  border-radius: 16px;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  transition: transform .3s;
}
.feature-card:hover .feature-icon { transform: rotate(-8deg) scale(1.1); }
.feature-card h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink-900);
}
.feature-card p { color: var(--ink-500); font-size: 14px; }

@media (max-width: 880px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .features-grid { grid-template-columns: 1fr; } }

/* ===== SERVICES ===== */
.services { background: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .35s, box-shadow .35s;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.service-card:hover .service-img img { transform: scale(1.08); }
.service-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(13,40,24,.4));
}
.service-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,.95);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green-700);
  z-index: 2;
}
.service-body { padding: 22px 20px; }
.service-body h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink-900);
}
.service-body p {
  color: var(--ink-500);
  font-size: 14px;
  margin-bottom: 14px;
  min-height: 60px;
}
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--green-600);
  font-weight: 700;
  font-size: 14px;
  transition: gap .2s;
}
.service-link:hover { gap: 12px; color: var(--orange-600); }

@media (max-width: 880px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px) { .services-grid { grid-template-columns: 1fr; } }

/* ===== CALCULATOR ===== */
.calc {
  background: var(--ink-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.calc::before {
  content: ''; position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(18,183,106,.18), transparent 70%);
  top: -200px; right: -200px;
  border-radius: 50%;
}
.calc::after {
  content: ''; position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,122,26,.15), transparent 70%);
  bottom: -150px; left: -150px;
  border-radius: 50%;
}
.calc .section-title { color: #fff; }
.calc .section-title span { color: var(--green-300); }
.calc .section-sub { color: rgba(255,255,255,.7); }
.calc-wrap {
  position: relative; z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
}
.calc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.calc-field label {
  display: block;
  font-size: 13.5px;
  margin-bottom: 8px;
  color: rgba(255,255,255,.75);
  font-weight: 500;
}
.calc-field select,
.calc-field input {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  padding: 13px 16px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color .2s, background .2s;
}
.calc-field select:focus,
.calc-field input:focus {
  border-color: var(--green-300);
  background: rgba(255,255,255,.1);
}
.calc-field option { background: var(--ink-900); }
.calc-result {
  margin-top: 22px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(18,183,106,.15), rgba(255,122,26,.1));
  border: 1px solid rgba(18,183,106,.3);
  border-radius: var(--radius-lg);
  text-align: center;
}
.calc-result .label {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin-bottom: 6px;
}
.calc-result .price {
  font-family: 'Prompt', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--green-300);
  line-height: 1.1;
}
.calc-result .price small {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  margin-left: 6px;
}
.calc-note {
  margin-top: 14px;
  font-size: 12.5px;
  color: rgba(255,255,255,.55);
  text-align: center;
}
.calc-cta { display: flex; gap: 12px; justify-content: center; margin-top: 22px; flex-wrap: wrap; }

@media (max-width: 640px) {
  .calc-wrap { padding: 26px 20px; }
  .calc-row { grid-template-columns: 1fr; }
}

/* ===== AREAS / GRID LISTS ===== */
.areas { background: var(--green-50); }
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.area-tag {
  background: #fff;
  border: 1px solid var(--green-200);
  padding: 12px 16px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-700);
  transition: all .2s;
  display: block;
}
.area-tag:hover {
  background: var(--green-500);
  color: #fff;
  border-color: var(--green-500);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(18,183,106,.25);
}
.area-tag .icon { display: inline-block; margin-right: 4px; }

@media (max-width: 880px) { .area-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 600px) { .area-grid { grid-template-columns: repeat(2,1fr); } }

.area-grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
@media (max-width: 880px) { .area-grid-6 { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 480px) { .area-grid-6 { grid-template-columns: repeat(2,1fr); } }

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--ink-100);
  position: relative;
  transition: transform .3s, box-shadow .3s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review-card::before {
  content: '"';
  position: absolute;
  top: 12px; right: 22px;
  font-family: serif;
  font-size: 70px;
  line-height: 1;
  color: var(--green-100);
  font-weight: 800;
}
.review-stars { color: #ffb700; font-size: 17px; margin-bottom: 10px; letter-spacing: 2px; }
.review-text {
  color: var(--ink-700);
  font-size: 14.5px;
  margin-bottom: 18px;
  position: relative; z-index: 2;
}
.review-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--ink-100);
}
.review-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--green-200);
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-name strong {
  display: block;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-900);
}
.review-name span { font-size: 12.5px; color: var(--ink-500); }

@media (max-width: 880px) { .reviews-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ===== FAQ ===== */
.faq { background: #fff; }
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg);
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--green-300); background: #fff; }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--ink-900);
  background: none;
  text-align: left;
}
.faq-q .plus {
  flex-shrink: 0;
  width: 30px; height: 30px;
  background: var(--green-100);
  color: var(--green-700);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: transform .3s, background .3s;
}
.faq-item.open .plus {
  background: var(--green-500);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  color: var(--ink-500);
  font-size: 14.5px;
}
.faq-item.open .faq-a {
  padding: 0 22px 20px;
  max-height: 500px;
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: linear-gradient(135deg, var(--green-700), var(--green-800));
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,176,112,.18), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(166,244,197,.15), transparent 50%);
}
.final-cta-content { position: relative; z-index: 2; }
.final-cta h2 {
  font-family: 'Prompt', sans-serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}
.final-cta p { font-size: 16px; opacity: .9; margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; }
.final-cta .btn { padding: 15px 28px; font-size: 15px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--ink-900);
  color: rgba(255,255,255,.75);
  padding: 60px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 38px;
  margin-bottom: 36px;
}
.footer h4 {
  font-family: 'Prompt', sans-serif;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { height: 44px; width: auto; }
.footer-brand strong { color: #fff; font-family: 'Prompt', sans-serif; font-size: 17px; font-weight: 800; }
.footer p, .footer li { font-size: 14px; line-height: 1.8; }
.footer ul { list-style: none; }
.footer ul a { transition: color .2s; }
.footer ul a:hover { color: var(--green-300); }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 10px; align-items: flex-start; }
.footer-contact .ico {
  width: 30px; height: 30px;
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer-map {
  border-radius: var(--radius);
  overflow: hidden;
  height: 170px;
  border: 1px solid rgba(255,255,255,.1);
}
.footer-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.3) invert(.05); }
.footer-bottom {
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== FLOATING CTA ===== */
.float-cta {
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 50;
  display: flex; flex-direction: column; gap: 12px;
}
.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: #fff;
  box-shadow: var(--shadow-lg);
  transition: transform .25s;
}
.float-btn:hover { transform: scale(1.1); }
.float-call { background: linear-gradient(135deg, var(--orange-500), var(--orange-600)); animation: ring 2s infinite; }
.float-line { background: #06c755; }
@keyframes ring {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,122,26,.6), var(--shadow-lg); }
  50%     { box-shadow: 0 0 0 12px rgba(255,122,26,0), var(--shadow-lg); }
}

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .section-sub { margin-bottom: 32px; }
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.gallery-grid img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  transition: transform .3s;
  cursor: pointer;
}
.gallery-grid img:hover { transform: scale(1.05); }
@media (max-width: 720px) { .gallery-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 420px) { .gallery-grid { grid-template-columns: repeat(2,1fr); } }
