/* ─── Site Navigation ─── */
.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: rgba(253,248,242,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--beige-dark);
  box-shadow: 0 2px 18px rgba(90,60,30,0.08);
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nav-brand {
  font-size: 1rem;
  font-weight: 800;
  color: #b8962e;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.02em;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

/* ── Hamburger Button ── */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
  flex-shrink: 0;
}
.nav-hamburger:hover { background: var(--beige); }

.nav-hamburger .bar {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

/* X state when open */
.nav-hamburger.open .bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-hamburger.open .bar:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open .bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── Dropdown Menu ── */
.nav-dropdown {
  position: absolute;
  top: 60px;
  right: 0;
  left: 0;
  background: rgba(253,248,242,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--beige-dark);
  box-shadow: 0 8px 32px rgba(90,60,30,0.12);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 20px;
}

.nav-dropdown.open {
  max-height: 500px;
  padding: 16px 20px 20px;
}

.nav-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 6px;
  max-width: 800px;
  margin: 0 auto;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: all 0.2s;
  text-decoration: none;
}
.nav-link:hover {
  background: var(--beige);
  color: var(--green-dark);
}
.nav-link.nav-active {
  background: var(--green-light);
  color: var(--green-dark);
  font-weight: 700;
}

.nav-dropdown-cta {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--beige-dark);
  display: flex;
  justify-content: center;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--wa-green);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 50px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(37,211,102,0.3);
}
.nav-cta:hover {
  background: var(--wa-dark);
  transform: translateY(-1px);
}

/* Overlay when menu open */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 60px 0 0 0;
  z-index: 999;
  background: rgba(58,48,40,0.25);
}
.nav-overlay.open { display: block; }

/* All sections/articles with id need offset so nav doesn't cover them */
section[id],
article[id] {
  scroll-margin-top: 68px;
}

@media (max-width: 600px) {
  .site-nav { height: 52px; padding: 0 14px; }
  .nav-dropdown { top: 52px; }
  .nav-overlay { top: 52px; }
  .nav-brand { font-size: 0.92rem; }
  .nav-links { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Tabs ─── */
.tabs-container {
  margin-top: 48px;
}

.tabs-nav {
  display: flex;
  border-bottom: 2px solid var(--beige-dark);
  margin-bottom: 32px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 0;
}
.tabs-nav::-webkit-scrollbar { display: none; }

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  font-family: inherit;
}
.tab-btn:hover {
  background: var(--beige-light);
  color: var(--text-dark);
}
.tab-btn[aria-selected="true"] {
  color: var(--green-dark);
  border-bottom-color: var(--green-dark);
  background: rgba(212,232,214,0.35);
  font-weight: 700;
}

.tab-panel {
  animation: tabFadeIn 0.28s ease;
}
@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .tab-panel { animation: none; }
}

.tab-panel .service-card {
  max-width: 680px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .tab-btn { padding: 11px 16px; font-size: 0.88rem; }
}

/* ─── Skip Link ─── */
.skip-link {
  position: absolute;
  top: -100px;
  right: 0;
  background: var(--green-dark);
  color: #fff;
  padding: 12px 24px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  z-index: 99999;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* ─── Focus Visible (WCAG 2.4.7) ─── */
:focus-visible {
  outline: 3px solid var(--green-dark);
  outline-offset: 3px;
  border-radius: 4px;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--green-dark);
  outline-offset: 3px;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --beige: #f5ede0;
  --beige-dark: #e8d8c4;
  --beige-light: #fdf8f2;
  --green: #7a9e7e;
  --green-dark: #5c7d60;
  --green-light: #d4e8d6;
  --white: #ffffff;
  --text-dark: #3a3028;
  --text-mid: #6b5e52;
  --text-light: #9a8878;
  --shadow: 0 4px 24px rgba(90,60,30,0.10);
  --shadow-hover: 0 8px 32px rgba(90,60,30,0.18);
  --radius: 18px;
  --radius-sm: 10px;
  --gold: #b8962e;
  --gold-light: #fdf3d8;
  --wa-green: #25D366;
  --wa-dark: #128C7E;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Heebo', 'Segoe UI', 'Arial Hebrew', Arial, sans-serif;
  background: var(--beige-light);
  color: var(--text-dark);
  direction: rtl;
  line-height: 1.8;
  font-size: 17px;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

/* ─── Typography ─── */
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.25; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 700; line-height: 1.3; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 600; }

/* ─── Buttons ─── */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--wa-green);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
}
.btn-wa:hover {
  background: var(--wa-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
}
.btn-wa svg { flex-shrink: 0; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--green-dark);
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid var(--green);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
}

/* ─── Floating Action Dock ─── */
.float-dock {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  filter: drop-shadow(0 8px 32px rgba(40,60,30,0.18));
}

.float-dock-label {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--text-mid);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  border: 1px solid rgba(122,158,126,0.25);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  white-space: nowrap;
}

.float-dock-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 60px;
  padding: 8px 10px;
  border: 1px solid rgba(122,158,126,0.2);
  box-shadow: 0 8px 36px rgba(40,60,30,0.14);
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 50px;
  padding: 11px 20px;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: all 0.28s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.float-btn-wa {
  background: var(--wa-green);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  animation: pulseWA 2.5s infinite;
}
.float-btn-wa:hover {
  background: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(37,211,102,0.55);
  animation: none;
}

.float-btn-phone {
  background: var(--beige-light);
  color: var(--green-dark);
  border: 1.5px solid var(--green);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.float-btn-phone:hover {
  background: var(--green-dark);
  color: #fff;
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(60,100,65,0.35);
}

.float-divider {
  width: 1px;
  height: 32px;
  background: rgba(122,158,126,0.25);
  flex-shrink: 0;
}

@keyframes pulseWA {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.3); }
  50%       { box-shadow: 0 4px 28px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0); }
}

@media (max-width: 600px) {
  .float-dock { bottom: 16px; left: 50%; transform: translateX(-50%); align-items: center; }
  .float-dock-label { display: none; }
  .float-btn span { display: none; }
  .float-btn { padding: 13px 15px; }
  .float-divider { height: 28px; }
}

/* ─── Section Wrappers ─── */
section { padding: 80px 20px; }
.container { max-width: 1100px; margin: 0 auto; }

.section-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
  letter-spacing: 0.03em;
}

.section-title {
  color: var(--text-dark);
  margin-bottom: 14px;
}

.section-sub {
  color: var(--text-mid);
  font-size: 1.05rem;
  max-width: 620px;
}

.text-center { text-align: center; }
.mx-auto { margin-right: auto; margin-left: auto; }

.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--beige-dark));
  border-radius: 4px;
  margin: 18px 0 28px;
}
.divider.centered { margin: 18px auto 28px; }

/* ─── Hero brand block ─── */
.hero-top-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  margin-bottom: 20px;
}

.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  text-align: center;
}

.hero-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 6px;
}

.hero-brand-name {
  font-size: 1.6rem;
  font-weight: 800;
  color: #b8962e;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.hero-brand-tagline {
  font-size: 0.88rem;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 2px;
}

/* ─── Hero ─── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f0e6 0%, #e9f2ea 100%);
}

#hero .hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(122,158,126,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(245,237,224,0.7) 0%, transparent 60%);
  z-index: 0;
}

#hero .hero-img-wrap {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 52%;
  overflow: hidden;
  z-index: 0;
}

#hero .hero-img-wrap img,
#hero .hero-img-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  filter: brightness(0.92);
}

#hero .hero-img-wrap video {
  display: block;
}

#hero .hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 0%, #f8f0e6 70%);
}

#hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin-right: auto;
}

#hero h1 {
  color: var(--text-dark);
  margin-bottom: 0;
  text-align: right;
  flex: 1;
}
#hero h1 span {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-credential {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(122,158,126,0.35);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 18px;
}
.hero-credential .cred-dot {
  width: 6px;
  height: 6px;
  background: var(--green-dark);
  border-radius: 50%;
  flex-shrink: 0;
}

#hero .hero-sub {
  font-size: 1.2rem;
  color: var(--text-mid);
  margin-bottom: 28px;
  max-width: 520px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1px solid var(--beige-dark);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow);
}

.trust-badge .check { color: var(--gold); font-size: 1.1rem; }

.trust-badge-rating {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #fffbea;
  border: 1px solid #f0d464;
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #8a6800;
  box-shadow: var(--shadow);
}

/* ─── CTA with sub-label ─── */
.cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.hero-social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

.hero-social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.hero-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(122,158,126,0.35);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  box-shadow: var(--shadow);
}

.hero-social-btn:hover {
  background: var(--white);
  border-color: var(--green-dark);
  color: var(--green-dark);
}

/* ─── EMOTIONAL HOOK ─── */
#hook {
  background: linear-gradient(135deg, var(--green-light) 0%, var(--beige) 100%);
  text-align: center;
  padding: 70px 20px;
}

#hook .hook-card {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 50px 44px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(122,158,126,0.2);
}

#hook .hook-icon {
  font-size: 3rem;
  margin-bottom: 18px;
}

#hook blockquote {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--text-dark);
  font-style: normal;
  line-height: 1.7;
  margin-bottom: 20px;
}

#hook .hook-sub {
  color: var(--text-mid);
  font-size: 1rem;
}

/* ─── SERVICES ─── */
#services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.service-card {
  background: var(--beige-light);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--beige-dark);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), var(--beige-dark));
  border-radius: 0 var(--radius) var(--radius) 0;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.service-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.service-card h3 {
  color: var(--text-dark);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-mid);
  font-size: 0.97rem;
  line-height: 1.75;
}

.service-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
  margin-top: 14px;
}

/* ─── WHY US / BENEFITS ─── */
#why-us {
  background: linear-gradient(180deg, var(--beige-light) 0%, var(--beige) 100%);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.why-us-item {
  text-align: center;
  padding: 30px 18px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--beige-dark);
  transition: transform var(--transition), box-shadow var(--transition);
}

.why-us-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.why-us-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
}

.why-us-item h3 {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.why-us-item p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ─── ABOUT ─── */
#about {
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  background: var(--beige-dark);
}

.about-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-light);
  font-size: 0.9rem;
  text-align: center;
  padding: 20px;
}

.img-placeholder .ph-icon { font-size: 3rem; opacity: 0.5; }

.cert-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--green-light), #f0f9f1);
  border: 1px solid rgba(92,125,96,0.3);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--green-dark);
  font-weight: 600;
}

.cert-banner .cert-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.about-text .about-list {
  list-style: none;
  margin: 20px 0 32px;
}

.about-text .about-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  color: var(--text-mid);
  font-size: 0.97rem;
  border-bottom: 1px solid var(--beige-dark);
}

.about-text .about-list li:last-child { border-bottom: none; }

.about-text .about-list li::before {
  content: '✦';
  color: var(--green-dark);
  font-size: 0.8rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ─── TESTIMONIALS ─── */
#testimonials {
  background: linear-gradient(135deg, var(--beige) 0%, var(--green-light) 100%);
}

.testimonials-grid {
  columns: 3;
  column-gap: 20px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  break-inside: avoid;
  margin-bottom: 20px;
  display: inline-block;
  width: 100%;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

@media (max-width: 900px) {
  .testimonials-grid { columns: 2; }
}
@media (max-width: 520px) {
  .testimonials-grid { columns: 1; }
}

/* WhatsApp phone UI frame */
.wa-phone-frame {
  background: #ece5dd;
  padding: 12px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.wa-phone-header {
  background: #075E54;
  color: #fff;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
}

.wa-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.wa-bubble {
  background: #fff;
  border-radius: 12px 0 12px 12px;
  padding: 10px 14px;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.6;
  max-width: 88%;
  position: relative;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.wa-bubble .wa-time {
  font-size: 0.7rem;
  color: #aaa;
  text-align: left;
  margin-top: 4px;
}

.testimonial-screenshot {
  background: #ece5dd;
  line-height: 0;
}

.testimonial-screenshot img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.testimonial-card:hover .testimonial-screenshot img {
  transform: scale(1.02);
}

.testimonial-img-wrap {
  background: var(--beige-dark);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.85rem;
  text-align: center;
  gap: 8px;
  flex-direction: column;
}

.testimonial-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-caption {
  padding: 16px 18px;
  text-align: center;
}

.testimonial-caption .caption-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.testimonial-caption .caption-stars {
  color: #e6b84f;
  font-size: 1rem;
  letter-spacing: 2px;
}

/* ─── GALLERY ─── */
#gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
  align-items: start;
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--beige-dark);
  position: relative;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.gallery-item:first-child {
  grid-column: span 1;
}

.gallery-item:hover { transform: scale(1.02); }

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

/* ─── LOCATION ─── */
#location {
  background: linear-gradient(135deg, var(--beige-light) 0%, var(--green-light) 100%);
}

.location-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
  max-width: 680px;
}

.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  aspect-ratio: 4/3;
  background: var(--beige-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  min-height: 300px;
}

.location-info h2 { margin-bottom: 10px; }

.location-items {
  margin: 28px 0;
  list-style: none;
}

.location-items li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--beige-dark);
}

.location-items li:last-child { border-bottom: none; }

.loc-icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}

.loc-text strong { display: block; color: var(--text-dark); font-weight: 700; font-size: 0.97rem; }
.loc-text span { color: var(--text-mid); font-size: 0.9rem; }

/* ─── FAQ ─── */
#faq {
  background: var(--white);
}

.faq-list {
  margin-top: 48px;
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
}

.faq-item {
  border: 1px solid var(--beige-dark);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(90,60,30,0.05);
  transition: box-shadow var(--transition);
}

.faq-item:hover { box-shadow: var(--shadow); }

.faq-question {
  width: 100%;
  background: var(--beige-light);
  border: none;
  padding: 20px 24px;
  text-align: right;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background var(--transition);
}

.faq-question:hover { background: var(--beige-dark); }

.faq-question.open { background: var(--green-light); color: var(--green-dark); }

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s;
  font-size: 0.85rem;
  color: var(--green-dark);
}

.faq-question.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--text-mid);
  font-size: 0.97rem;
  line-height: 1.8;
  background: var(--white);
}

.faq-answer.open { display: block; }

/* ─── OBJECTION HANDLING ─── */
#objections {
  background: var(--beige);
}

.objections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.objection-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}

.objection-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.obj-icon { font-size: 2.2rem; margin-bottom: 14px; }

.objection-card h3 {
  color: var(--text-dark);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.objection-card p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ─── SEO LOCAL SECTION ─── */
#seo-section {
  background: var(--beige-light);
  padding: 72px 20px;
  border-top: 1px solid var(--beige-dark);
}

.seo-section-inner {
  max-width: 860px;
  margin: 0 auto;
}

#seo-section h2 {
  color: var(--text-dark);
  margin-bottom: 8px;
}

#seo-section .seo-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--beige-dark));
  border-radius: 4px;
  margin: 16px 0 26px;
}

#seo-section p {
  color: var(--text-mid);
  font-size: 0.97rem;
  line-height: 1.95;
  margin-bottom: 16px;
}

#seo-section strong {
  color: var(--text-dark);
}

/* ─── FINAL CTA ─── */
#final-cta {
  background: linear-gradient(135deg, #2d5a30 0%, #4a7a4e 50%, #3d6b42 100%);
  color: var(--white);
  text-align: center;
  padding: 100px 20px;
}

#final-cta h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

#final-cta p {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  margin-bottom: 40px;
  max-width: 560px;
  margin-right: auto;
  margin-left: auto;
}

.final-cta-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
}

#final-cta .btn-wa {
  font-size: 1.25rem;
  padding: 20px 48px;
  background: #fff;
  color: var(--green-dark);
  box-shadow: 0 6px 28px rgba(0,0,0,0.2);
}

#final-cta .btn-wa:hover {
  background: var(--green-light);
  color: var(--green-dark);
  box-shadow: 0 10px 36px rgba(0,0,0,0.3);
}

#final-cta .response-note-cta {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  margin-top: 10px;
}

#final-cta .phone-link {
  margin-top: 24px;
  display: block;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}
#final-cta .phone-link a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}

/* ─── BEFORE / AFTER ─── */
#before-after {
  background: var(--beige-light);
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  margin-top: 48px;
  align-items: center;
}

.before-card,
.after-card {
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow);
}

.before-card {
  background: #fff8f8;
  border: 1px solid #f5d0d0;
  border-top: 4px solid #d97070;
}

.after-card {
  background: linear-gradient(135deg, #f0f9f1 0%, var(--gold-light) 100%);
  border: 1px solid rgba(92,125,96,0.2);
  border-top: 4px solid var(--gold);
}

.ba-header {
  text-align: center;
  margin-bottom: 20px;
}

.ba-icon {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.before-card h3 {
  color: #b05050;
  font-size: 1.2rem;
}
.after-card h3 {
  color: var(--green-dark);
  font-size: 1.2rem;
}

.ba-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.before-card .ba-list li,
.after-card .ba-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-mid);
  padding: 9px 13px;
  border-radius: var(--radius-sm);
}

.before-card .ba-list li {
  background: rgba(217,112,112,0.07);
  border-right: 3px solid #d97070;
}

.after-card .ba-list li {
  background: rgba(92,125,96,0.07);
  border-right: 3px solid var(--gold);
}

.before-card .ba-list li::before {
  content: '✗';
  color: #d97070;
  font-weight: 700;
  flex-shrink: 0;
}
.after-card .ba-list li::before {
  content: '✓';
  color: var(--green-dark);
  font-weight: 700;
  flex-shrink: 0;
}

.ba-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-arrow-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold), #d4a832);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  box-shadow: 0 4px 18px rgba(184,150,46,0.4);
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .before-after-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .ba-divider { padding: 16px 0; }
  .ba-arrow-icon {
    transform: rotate(-90deg);
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
}

/* ─── FOOTER ─── */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.65);
  text-align: center;
  padding: 30px 20px 90px;
  font-size: 0.88rem;
}

footer a { color: rgba(255,255,255,0.85); text-decoration: underline; }

/* ─── ANIMATIONS ─── */
.fade-in {
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.stagger-1 { transition-delay: 0.06s; }
.stagger-2 { transition-delay: 0.12s; }
.stagger-3 { transition-delay: 0.18s; }
.stagger-4 { transition-delay: 0.24s; }
.stagger-5 { transition-delay: 0.30s; }

/* ─── Slide-in + Zoom-in Animations ─── */
.slide-in-right {
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  transition: opacity 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.slide-in-right.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.slide-in-left {
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  transition: opacity 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.slide-in-left.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.zoom-in {
  opacity: 0;
  transform: scale(0.93) translateY(12px);
  transition: opacity 0.45s cubic-bezier(0.34, 1.2, 0.64, 1),
              transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.zoom-in.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* ─── Button shimmer effect ─── */
.btn-wa {
  position: relative;
  overflow: hidden;
}
.btn-wa::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.32) 50%,
    transparent 100%
  );
  animation: btnShimmer 3s ease-in-out infinite;
  pointer-events: none;
  border-radius: inherit;
}
@keyframes btnShimmer {
  0%       { left: -100%; }
  55%, 100% { left: 160%; }
}

/* ─── Hero logo float ─── */
@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}
.hero-logo {
  animation: floatLogo 3.5s ease-in-out infinite;
}

/* ─── Why-us icon spring pop on reveal ─── */
.why-us-icon {
  display: inline-block;
  transform: scale(0.5);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.34, 1.6, 0.64, 1),
              opacity 0.4s ease;
}
.why-us-item.visible .why-us-icon {
  transform: scale(1);
  opacity: 1;
}

/* ─── Service card hover – gold glow ─── */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover), 0 0 0 2px var(--gold-light), 0 8px 30px rgba(184,150,46,0.12);
  border-color: var(--gold-light);
}

/* ─── Why-us item hover – gold glow ─── */
.why-us-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover), 0 0 0 2px var(--gold-light);
}

/* ─── Objection card hover – gold glow ─── */
.objection-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover), 0 0 0 2px var(--gold-light);
}

/* ─── Section decorative dividers ─── */
.wave-divider {
  line-height: 0;
  overflow: hidden;
}
.wave-divider svg { display: block; width: 100%; }

/* ─── Reduced Motion (WCAG 2.3.3) ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-logo { animation: none; }
  .hero-video { display: none; }
  .btn-wa::after { display: none; }
  .why-us-icon { transform: scale(1); opacity: 1; }
  .fade-in,
  .slide-in-right,
  .slide-in-left,
  .zoom-in {
    opacity: 1;
    transform: none;
  }
  .float-btn-wa {
    animation: none;
  }
}

/* ─── Accessibility Section ─── */
#accessibility-statement {
  background: var(--white);
  padding: 60px 20px 40px;
  border-top: 2px solid var(--beige-dark);
}

#accessibility-statement h2 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}

#accessibility-statement p {
  color: var(--text-mid);
  font-size: 0.93rem;
  line-height: 1.85;
  max-width: 800px;
  margin-bottom: 12px;
}

#accessibility-statement a {
  color: var(--green-dark);
  text-decoration: underline;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .about-inner,
  .location-inner { grid-template-columns: 1fr; gap: 36px; }

  #hero .hero-img-wrap {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }

  #hero .hero-img-wrap img,
  #hero .hero-img-wrap video {
    opacity: 0.5;
    filter: brightness(0.85);
  }

  #hero .hero-img-wrap::after {
    background: linear-gradient(to bottom, rgba(248,240,230,0.25) 0%, rgba(248,240,230,0.75) 100%);
  }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child { grid-column: span 1; }
}

@media (max-width: 600px) {
  section { padding: 52px 16px; }
  #why-us { padding: 52px 16px; }
  #seo-section { padding: 52px 16px; }

  #hero { min-height: auto; padding: 72px 16px 52px; }
  #hero h1 { font-size: 1.75rem; line-height: 1.3; }
  #hero .hero-sub { font-size: 1rem; margin-bottom: 22px; }
  .hero-brand-name { font-size: 1.3rem; }
  .hero-logo { width: 72px; height: 72px; }
  .hero-top-row { flex-direction: row; align-items: center; gap: 14px; }
  .hero-logo { width: 64px; height: 64px; }
  .hero-brand-name { font-size: 1.1rem; }
  #hero h1 { margin-bottom: 0; }

  .trust-badges { gap: 8px; }
  .trust-badge { font-size: 0.85rem; padding: 6px 13px; }
  .trust-badge-rating { font-size: 0.85rem; padding: 6px 13px; }

  #hook .hook-card { padding: 32px 22px; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }

  .services-grid { grid-template-columns: 1fr; }
  .why-us-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  .cta-row {
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
  }

  .btn-wa {
    flex: 1;
    justify-content: center;
    font-size: 0.95rem;
    padding: 13px 16px;
  }

  .hero-social-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
  }

  footer { padding-bottom: 80px; }
}

/* ─── Gift Voucher Tab Button ─── */
.gift-tab-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9997;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: linear-gradient(160deg, #b8962e 0%, #d4a832 55%, #c8a83a 100%);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 20px 11px;
  border-radius: 14px 0 0 14px;
  box-shadow: -4px 0 24px rgba(184,150,46,0.4), -2px 0 8px rgba(0,0,0,0.10);
  font-family: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: giftTabPulse 4s ease-in-out infinite;
  text-decoration: none;
}

.gift-tab-btn:hover {
  transform: translateY(-50%) translateX(-5px);
  box-shadow: -8px 0 32px rgba(184,150,46,0.6), -3px 0 12px rgba(0,0,0,0.14);
  animation: none;
}

.gift-tab-icon {
  font-size: 1.5rem;
  line-height: 1;
  display: block;
}

.gift-tab-text {
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
  letter-spacing: 0.03em;
  display: block;
}

@keyframes giftTabPulse {
  0%, 100% { box-shadow: -4px 0 24px rgba(184,150,46,0.4), -2px 0 8px rgba(0,0,0,0.10); }
  50% { box-shadow: -6px 0 36px rgba(184,150,46,0.7), -2px 0 10px rgba(0,0,0,0.12); }
}

@media (max-width: 600px) {
  .gift-tab-btn {
    padding: 16px 9px;
  }
  .gift-tab-icon { font-size: 1.3rem; }
  .gift-tab-text { font-size: 0.72rem; }
}
