/* ISRAPET - sections.css - Premium $50K Section Styles */

/* ===== Hero Section - V15 Cinematic Split ===== */
.israpet-section--hero {
  padding: 0;
  min-height: auto;
  display: flex;
  align-items: flex-start;
  position: relative;
  background: linear-gradient(160deg, #070C09 0%, #0A0F0C 40%, #111A15 100%);
  overflow: hidden;
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
}

.hero__image-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero__video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero__video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(7,12,9,0.95) 0%, rgba(10,15,12,0.88) 50%, rgba(17,26,21,0.82) 100%);
  z-index: 1;
}

.israpet-section--hero::after { display: none; }

.israpet-section--hero .israpet-section__container { display: none; }

/* Hero split layout */
.hero__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px 48px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__stats-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 20px;
}

.hero__stat-item { }

.hero__stat-value {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.hero__stat-number {
  font-family: var(--israpet-font-heading);
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -2px;
  color: #F4F4F2;
  line-height: 1;
}

.hero__stat-plus {
  color: #14B8A6;
  font-size: 24px;
  font-weight: 700;
}

.hero__stat-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(244,244,242,0.35);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
}

.hero__text-block {
  max-width: 700px;
  text-align: right;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(20,184,166,0.1);
  border: 1px solid rgba(20,184,166,0.15);
  border-radius: 100px;
  padding: 8px 22px;
  font-size: 13px;
  font-weight: 600;
  color: #14B8A6;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #14B8A6;
  box-shadow: 0 0 12px rgba(20,184,166,0.5);
  animation: badge-pulse 2s ease infinite;
}

@keyframes badge-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero__title {
  font-family: var(--israpet-font-heading);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 900;
  color: #F4F4F2;
  margin-bottom: 20px;
  line-height: 0.98;
  letter-spacing: -3px;
}

.hero__title .accent {
  background: linear-gradient(135deg, #14B8A6 0%, #5EEAD4 50%, #14B8A6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-family: var(--israpet-font-body);
  font-size: 18px;
  color: rgba(244,244,242,0.5);
  font-weight: 400;
  max-width: 500px;
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.hero__cta-main {
  font-size: 16px;
  padding: 16px 40px;
}

/* Hero trust - legacy hidden */
.hero__trust { display: none !important; }

/* Hero scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color var(--d-normal) var(--ease);
}

.hero__scroll-indicator:hover { color: rgba(255,255,255,0.7); }

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #14B8A6, transparent);
  animation: scroll-line 2s ease infinite;
}

@keyframes scroll-line {
  0% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.5; transform: scaleY(0.5); transform-origin: top; }
  100% { opacity: 1; transform: scaleY(1); }
}

/* Hero mobile */
@media (max-width: 768px) {
  .hero__content {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    padding: 72px 24px 32px;
    justify-content: flex-start;
  }
  .hero__text-block {
    text-align: center;
    max-width: 100%;
  }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; flex-wrap: wrap; }
  .hero__stats-col { flex-direction: row; gap: 24px; margin-top: 40px; }
  .hero__badge { margin-left: auto; margin-right: auto; }
}

/* ===== Problems Section - 2 Column Grid ===== */
.problems-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.problem-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.problem-item:hover {
  background: rgba(20,184,166,0.06);
  border-color: #14B8A6;
  box-shadow: 0 0 0 1px rgba(20,184,166,0.3), 0 0 24px rgba(20,184,166,0.12);
  transform: translateY(-3px);
}

.problem-item__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #14B8A6;
  font-size: 16px;
  border: 1px solid #14B8A6;
  transition: all 0.3s ease;
}
.problem-item:hover .problem-item__icon {
  background: #14B8A6;
  color: #050505;
  border-color: #14B8A6;
}

.problem-item__content { flex: 1; }

.problem-item__title {
  font-size: 16px;
  font-weight: 700;
  color: #F4F4F2;
  margin-bottom: 2px;
}
.problem-item__text {
  font-size: 13px;
  color: rgba(244,244,242,0.5);
  line-height: 1.5;
}

/* ===== Services Section - Tall Cards ===== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  border-color: #14B8A6;
  border-top: 2px solid #14B8A6;
  transform: translateY(-6px);
  box-shadow: 0 0 0 1px rgba(20,184,166,0.3), 0 0 24px rgba(20,184,166,0.12);
}

.service-card__header {
  position: relative;
  padding: 32px 32px 0;
  background: linear-gradient(135deg, #122018 0%, rgba(20,184,166,0.05) 100%);
}

.service-card__number {
  font-family: 'Heebo', sans-serif;
  font-size: 120px;
  font-weight: 900;
  color: rgba(20,184,166,0.12);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  position: absolute;
  top: -10px;
  left: 16px;
}

.service-card__header-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #14B8A6;
  font-size: 24px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  border: 1px solid #14B8A6;
  transition: all 0.3s ease;
}

.service-card:hover .service-card__header-icon {
  background: #14B8A6;
  color: #050505;
  border-color: #14B8A6;
}

.service-card__body {
  padding: 24px 32px 32px;
}

.service-card__title {
  font-family: 'Heebo', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #F4F4F2;
  margin-bottom: 8px;
}

.service-card__meta {
  font-size: 14px;
  color: #14B8A6;
  font-weight: 600;
  margin-bottom: 16px;
}

.service-card__text {
  font-size: 15px;
  color: rgba(244,244,242,0.55);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  padding: 0;
}

.service-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(244,244,242,0.55);
}

.service-card__features li i {
  color: #14B8A6;
  font-size: 11px;
  width: 20px;
  text-align: center;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #14B8A6;
  font-weight: 600;
  font-size: 15px;
  transition: gap 0.35s;
}

.service-card__link:hover {
  gap: 14px;
}

/* ===== Section CTA (shared) ===== */
.israpet-section__cta {
  text-align: center;
  margin-top: 64px;
}

.israpet-section__cta-text {
  font-family: 'Heebo', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #F4F4F2;
}

.israpet-section__cta-note {
  margin-top: 12px;
  color: rgba(244,244,242,0.5);
  font-size: 14px;
}

/* ===== Quote Strip ===== */
.quote-strip {
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  background: rgba(20,184,166,0.02);
}
.quote-strip__container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 24px;
}
.quote-strip p {
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: rgba(244,244,242,0.6);
  max-width: 600px;
  margin: 0 auto 8px;
  line-height: 1.6;
}
.quote-strip span {
  font-size: 13px;
  font-weight: 600;
  color: #14B8A6;
  letter-spacing: 1px;
}

/* ===== Process Section - Horizontal Flow ===== */
.process-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  background: none;
  border: none;
  border-radius: 0;
}

.process-step__number {
  font-family: 'Heebo', sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: #14B8A6;
  opacity: 0.3;
  margin-bottom: 12px;
  line-height: 1;
  transition: opacity 0.3s;
}
.process-step:hover .process-step__number {
  opacity: 0.6;
}

.process-step h3 {
  font-size: 20px;
  font-weight: 700;
  color: #F4F4F2;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 15px;
  color: rgba(244,244,242,0.5);
  line-height: 1.6;
}

.process-arrow {
  display: flex;
  align-items: center;
  padding-top: 16px;
  color: rgba(20,184,166,0.2);
  font-size: 14px;
  flex-shrink: 0;
}

.process-callout {
  margin-top: 64px;
  text-align: center;
  padding: 48px 40px;
  background: transparent;
  border: none;
  border-radius: 0;
  position: relative;
}
.process-callout::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #14B8A6, transparent);
}
.process-callout__text {
  font-family: 'Heebo', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #F4F4F2;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.process-callout__sub {
  font-size: 15px;
  color: rgba(244,244,242,0.55);
  margin-bottom: 24px;
}
.process-callout .btn {
  background: #14B8A6;
  color: #0A0F0C;
  padding: 14px 36px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-family: 'Heebo', sans-serif;
}
.process-callout .btn:hover {
  background: #2DD4BF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(20,184,166,0.25);
}
.process-callout__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.process-callout .btn--ghost {
  background: transparent;
  color: #14B8A6;
  border: 1px solid rgba(20,184,166,0.25);
}
.process-callout .btn--ghost:hover {
  background: rgba(20,184,166,0.08);
  border-color: #14B8A6;
  box-shadow: none;
}

/* ===== About Section ===== */
.about__wrapper {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.about__image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.about__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: #111A15;
}

.about__image--placeholder {
  background: linear-gradient(135deg, rgba(20,184,166,0.08), #111A15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__initials {
  font-family: 'Heebo', sans-serif;
  font-size: 72px;
  font-weight: 700;
  color: #14B8A6;
  opacity: 0.12;
}

.about__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about__text {
  color: rgba(244,244,242,0.5);
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 17px;
}

.about__text strong {
  color: #F4F4F2;
  font-weight: 600;
}

.about__quote {
  position: relative;
  border-right: 4px solid #14B8A6;
  padding: 20px 24px;
  margin: 24px 0;
  background: rgba(255,255,255,0.03);
  border-radius: 0 16px 16px 0;
}

.about__quote-icon {
  position: absolute;
  top: -8px;
  right: 16px;
  font-size: 32px;
  color: #14B8A6;
  opacity: 0.2;
}

.about__quote p {
  font-family: 'Heebo', sans-serif;
  font-size: 18px;
  font-style: italic;
  color: #F4F4F2;
  line-height: 1.7;
  margin: 0;
}

/* About Beliefs Grid — Icon on TOP, full width below stats */
.about-beliefs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 32px 0;
}

.belief-item {
  padding: 24px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.35s;
  /* Vertical layout — NOT flex row */
  display: block;
}
.belief-item:hover {
  border-color: #14B8A6;
  box-shadow: 0 0 0 1px rgba(20,184,166,0.3), 0 0 24px rgba(20,184,166,0.12);
  background: rgba(20,184,166,0.03);
}

.belief-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #14B8A6;
  font-size: 18px;
  margin-bottom: 14px;
  border: 1px solid #14B8A6;
  transition: all 0.3s ease;
}

.belief-item__title {
  font-size: 17px;
  font-weight: 700;
  color: #F4F4F2;
  margin-bottom: 6px;
}

.belief-item__text {
  font-size: 14px;
  color: rgba(244,244,242,0.55);
  line-height: 1.65;
}

/* About Stats Row */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.about-stat {
  text-align: center;
  padding: 16px 8px;
}

.about-stat__value {
  font-family: 'Heebo', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #14B8A6;
  line-height: 1;
  margin-bottom: 4px;
}

.about-stat__label {
  font-size: 13px;
  color: rgba(244,244,242,0.55);
  font-weight: 500;
}

/* ===== Inline Form Strip ===== */
.inline-form-strip {
  padding: 48px 0;
  background: linear-gradient(135deg, rgba(20,184,166,0.06) 0%, rgba(20,184,166,0.02) 100%);
  border-top: 1px solid rgba(20,184,166,0.08);
  border-bottom: 1px solid rgba(20,184,166,0.08);
}

.inline-form-strip__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.inline-form-strip__text h3 {
  font-size: 20px;
  font-weight: 700;
  color: #F4F4F2;
  margin-bottom: 4px;
}
.inline-form-strip__text p {
  font-size: 14px;
  color: rgba(244,244,242,0.55);
  margin: 0;
}

.inline-form-strip__form {
  display: flex;
  gap: 8px;
  align-items: center;
}
.inline-form-strip__form input[type="text"],
.inline-form-strip__form input[type="tel"] {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 12px 16px;
  color: #F4F4F2;
  font-size: 16px;
  font-family: 'Heebo', sans-serif;
  width: 160px;
  transition: border-color 0.3s;
}
.inline-form-strip__form input:focus {
  border-color: #14B8A6;
  outline: none;
}
.inline-form-strip__form input::placeholder {
  color: rgba(244,244,242,0.35);
}
.inline-form-strip__form button {
  background: #14B8A6;
  color: #0A0F0C;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
  font-family: 'Heebo', sans-serif;
  white-space: nowrap;
}
.inline-form-strip__form button:hover {
  background: #2DD4BF;
}

/* ===== Case Study Section ===== */
.case-study__timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.case-study__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
  padding: 32px;
  background: rgba(255,255,255,0.03);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
  border-right: 4px solid #14B8A6;
  transition: all 0.35s;
}

.case-study__item:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.case-study__item:last-child { margin-bottom: 0; }

.case-study__label {
  display: inline-flex;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  align-self: flex-start;
}
.case-study__label--danger { background: rgba(211,47,47,0.1); color: #D32F2F; }
.case-study__label--info { background: rgba(20,184,166,0.10); color: #14B8A6; }
.case-study__label--success { background: rgba(20,184,166,0.15); color: #14B8A6; }

.case-study__image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 12px;
  background: #111A15;
}
.case-study__image--placeholder {
  background: linear-gradient(135deg, #111A15 0%, #142420 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.case-study__image--placeholder i { font-size: 48px; color: #14B8A6; opacity: 0.06; }

.case-study__title {
  font-family: 'Heebo', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #F4F4F2;
}
.case-study__text { color: rgba(244,244,242,0.5); line-height: 1.7; }

/* ===== Reviews Section (Dark) ===== */
.israpet-section--reviews {
  background: #142420 !important;
  color: #F4F4F2;
}

.israpet-section--reviews .israpet-section__label { color: #14B8A6; }
.israpet-section--reviews .israpet-section__label::before,
.israpet-section--reviews .israpet-section__label::after { background: #14B8A6; }
.israpet-section--reviews .israpet-section__title { color: #F4F4F2; }
.israpet-section--reviews .israpet-section__subtitle { color: rgba(244,244,242,0.5); }

.reviews-container {
  position: relative;
  overflow: hidden;
  padding: 0 16px;
}

.reviews-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 8px 0;
}

.review-card {
  min-width: calc(33.333% - 14px);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px;
  flex-shrink: 0;
  transition: all 0.35s;
}

.review-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: #14B8A6;
  box-shadow: 0 0 0 1px rgba(20,184,166,0.3), 0 0 24px rgba(20,184,166,0.12);
}

/* Stars */
.israpet-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.israpet-stars i {
  color: #C9A84C;
  font-size: 12px;
}

.review-card__tag {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(20,184,166,0.1);
  color: #14B8A6;
  border: 1px solid rgba(20,184,166,0.15);
  margin-bottom: 16px;
}

.review-card__text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(244,244,242,0.65);
  margin-bottom: 20px;
  min-height: 70px;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #14B8A6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
  color: #0A0F0C;
}

.review-card__name {
  font-weight: 600;
  color: #F4F4F2;
  font-size: 14px;
}

.review-card__dog {
  font-size: 12px;
  color: rgba(244,244,242,0.5);
  margin-top: 2px;
}

/* Reviews Dot Pagination */
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 32px;
}
.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}
.reviews-dot.active {
  width: 24px;
  border-radius: 4px;
  background: #14B8A6;
}

/* ===== Gallery Section ===== */
.gallery__filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery__filter {
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(244,244,242,0.6);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.35s;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.gallery__filter:hover,
.gallery__filter--active {
  background: #14B8A6;
  color: #0A0F0C;
  border-color: #14B8A6;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.gallery__item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #111A15 0%, #142420 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s;
}

.gallery__placeholder i { font-size: 48px; color: #14B8A6; opacity: 0.06; }
.gallery__item:hover .gallery__placeholder { transform: scale(1.03); }

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.gallery__item:hover img { transform: scale(1.03); }

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 12, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s;
}
.gallery__item:hover .gallery__overlay { opacity: 1; }
.gallery__zoom { color: #F4F4F2; font-size: 24px; }

/* ===== FAQ Section - Single Column ===== */
.faq-grid {
  display: flex;
  flex-direction: column;
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: none;
  border-radius: 0;
  padding: 0;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  cursor: pointer;
  gap: 12px;
  transition: color 0.3s;
  background: none;
  border: none;
  text-align: right;
  font-family: 'Heebo', sans-serif;
}
.faq-question:hover { color: #14B8A6; }

.faq-question h3 {
  font-size: 15px;
  font-weight: 600;
  flex: 1;
  color: #F4F4F2;
  margin: 0;
  line-height: 1.4;
}
.faq-question:hover h3 { color: #14B8A6; }

.faq-toggle {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: #14B8A6;
  border: 1.5px solid #14B8A6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A0F0C;
  font-size: 11px;
  transition: all 0.3s;
}
.faq-item.open .faq-toggle {
  background: transparent;
  color: #14B8A6;
  border-color: rgba(20,184,166,0.25);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding-bottom: 0;
  transition: max-height 0.4s ease, padding-bottom 0.4s ease;
}
.faq-item.open .faq-answer {
  opacity: 1;
}
.faq-answer p {
  font-size: 14px;
  color: rgba(244,244,242,0.5);
  line-height: 1.8;
  padding-top: 0;
  margin: 0;
}

/* ===== CTA Section (Dark) - Split Layout ===== */
.israpet-section--cta {
  background: #142420 !important;
  position: relative;
  color: #F4F4F2;
}

.israpet-section--cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(20,184,166,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

/* CTA Persuasion Side */
.cta-persuade .cta-eyebrow {
  color: #14B8A6;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.cta-persuade h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 12px;
  color: #F4F4F2;
}
.cta-persuade h2 em {
  color: #14B8A6;
  font-style: normal;
}
.cta-persuade .cta-persuade__desc {
  font-size: 16px;
  color: rgba(244,244,242,0.5);
  line-height: 1.7;
  margin-bottom: 0;
}

.cta-trust-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(244,244,242,0.6);
}
.cta-trust-item i {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 8px;
  background: rgba(20,184,166,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #14B8A6;
  font-size: 12px;
}

.cta-mini-quote {
  margin-top: 32px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.04);
}
.cta-mini-quote p {
  font-size: 14px;
  font-style: italic;
  color: rgba(244,244,242,0.5);
  line-height: 1.7;
  margin-bottom: 8px;
}
.cta-mini-quote span {
  font-size: 12px;
  color: #14B8A6;
  font-weight: 600;
}

/* CTA Form Side */
.cta-form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 36px;
}
.cta-form-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  color: #F4F4F2;
}

.cta-form-card .form-input,
.cta-form-card .form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px 16px;
  color: #F4F4F2;
  font-size: 16px;
  font-family: 'Heebo', sans-serif;
  margin-bottom: 10px;
  transition: border-color 0.3s;
}
.cta-form-card .form-input:focus,
.cta-form-card .form-textarea:focus {
  border-color: #14B8A6;
  outline: none;
  box-shadow: 0 0 0 3px rgba(20,184,166,0.08);
}
.cta-form-card .form-input::placeholder,
.cta-form-card .form-textarea::placeholder {
  color: rgba(244,244,242,0.2);
}
.cta-form-card .form-textarea {
  min-height: 80px;
  resize: vertical;
}

.cta-form__submit {
  width: 100%;
  background: #14B8A6;
  color: #0A0F0C;
  padding: 16px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Heebo', sans-serif;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.cta-form__submit:hover {
  background: #2DD4BF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(20,184,166,0.25);
}

.cta-thank-you {
  display: none;
  text-align: center;
  padding: 48px 24px;
}
.cta-thank-you.visible { display: block; }
.cta-thank-you__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(20,184,166,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: #14B8A6;
}
.cta-thank-you__title {
  font-size: 24px;
  font-weight: 800;
  color: #F4F4F2;
  margin-bottom: 8px;
}
.cta-thank-you__text {
  font-size: 16px;
  color: rgba(244,244,242,0.5);
}
.cta-thank-you__social {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}
.cta-thank-you__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(244,244,242,0.4);
  font-size: 16px;
  transition: all 0.3s;
}
.cta-thank-you__social a:hover {
  color: #14B8A6;
  border-color: rgba(20,184,166,0.3);
}

.cta-form-divider {
  text-align: center;
  font-size: 13px;
  color: rgba(244,244,242,0.15);
  margin: 16px 0;
  position: relative;
}
.cta-form-divider::before, .cta-form-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: rgba(255,255,255,0.06);
}
.cta-form-divider::before { right: 0; }
.cta-form-divider::after { left: 0; }

.cta-phone-link {
  display: block;
  text-align: center;
  color: #14B8A6;
  font-size: 16px;
  font-weight: 600;
  transition: opacity 0.3s;
}
.cta-phone-link:hover { opacity: 0.8; }

.cta-hours {
  text-align: center;
  font-size: 12px;
  color: rgba(244,244,242,0.2);
  margin-top: 8px;
}

/* ===== Footer ===== */
.israpet-footer {
  background: #142420;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 0;
  color: rgba(244,244,242,0.5);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-brand__logo .logo {
  font-family: 'Heebo', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #F4F4F2;
  margin-bottom: 12px;
}
.footer-brand__logo .accent { color: #14B8A6; }

.footer-brand__tagline {
  font-size: 14px;
  color: rgba(244,244,242,0.35);
  line-height: 1.7;
  margin: 0 0 20px;
  max-width: 280px;
}

.footer-brand__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 100px;
  background: transparent;
  color: #14B8A6;
  font-family: 'Heebo', sans-serif;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(20,184,166,0.2);
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 20px;
}
.footer-brand__cta:hover {
  background: #14B8A6;
  color: #0A0F0C;
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  transition: all 0.22s;
}
.footer-social a:hover {
  color: var(--teal);
  border-color: var(--teal);
  background: rgba(20,184,166,0.1);
  transform: translateY(-2px);
}

.footer-map {
  border-radius: 12px;
  overflow: hidden;
  height: 160px;
  border: 1px solid rgba(255,255,255,0.06);
}
.footer-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(100%) invert(92%) contrast(83%);
}

.footer-col h4 {
  font-family: 'Heebo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: rgba(244,244,242,0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col__menu { list-style: none; padding: 0; margin: 0; }
.footer-col__menu li { margin-bottom: 8px; }
.footer-col__menu li a,
.footer-col__menu li span {
  font-size: 13px;
  color: rgba(244,244,242,0.3);
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
}
.footer-col__menu li a:hover { color: #14B8A6; }

.footer-col__contact li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-col__contact li i { color: #14B8A6; font-size: 14px; width: 16px; text-align: center; }

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 20px 48px;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(244,244,242,0.2);
}
.footer-bottom a { color: #14B8A6; transition: color 0.35s; }
.footer-bottom a:hover { color: #5EEAD4; }
.footer-bottom img { height: 20px; opacity: 0.4; display: inline-block; vertical-align: middle; }

/* ===== Floating Buttons ===== */
.float-whatsapp {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.35s;
  text-decoration: none;
}
.float-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
  color: #fff;
}

.float-phone {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #14B8A6;
  color: #0A0F0C;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 20px rgba(20,184,166,0.4);
  transition: all 0.35s;
  text-decoration: none;
}
.float-phone:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(20,184,166,0.5);
  color: #0A0F0C;
}
body[data-business-hours="0"] .float-phone { display: none; }

/* ===== Footer Form Popup ===== */
.form-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.form-popup-overlay.active { opacity: 1; pointer-events: auto; }

.form-popup {
  background: #142420;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 40px 32px;
  max-width: 480px;
  width: 90%;
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.35s;
}
.form-popup-overlay.active .form-popup { transform: translateY(0) scale(1); }

.form-popup__close {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: none;
  color: rgba(244,244,242,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.35s;
}
.form-popup__close:hover { background: rgba(255,255,255,0.12); color: #F4F4F2; }

/* ===== Back to Top ===== */
.israpet-back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 99;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(244,244,242,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s;
}
.israpet-back-to-top--visible { opacity: 1; pointer-events: auto; }
.israpet-back-to-top:hover { background: #14B8A6; color: #0A0F0C; border-color: #14B8A6; }

/* ===== Cookie Banner ===== */
.israpet-cookie-banner {
  position: fixed;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 250;
  background: #142420;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: bottom 0.5s;
  max-width: 90%;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.israpet-cookie-banner--visible { bottom: 24px; }
.israpet-cookie-banner--hiding { bottom: -100px; }
.israpet-cookie-banner__text { font-size: 14px; color: rgba(244,244,242,0.6); margin: 0; }
.israpet-cookie-banner__btn {
  padding: 8px 20px;
  border-radius: 100px;
  background: #14B8A6;
  color: #0A0F0C;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.35s;
}
.israpet-cookie-banner__btn:hover { background: #0D9488; }

/* ===== Responsive ===== */
@media (min-width: 480px) {
  .about-stats { grid-template-columns: repeat(4, 1fr); }
  .gallery__grid { gap: 20px; }
}

@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .review-card { min-width: calc(33.333% - 14px); }
  .cta-split { grid-template-columns: 1fr 1fr; }
  .about-beliefs { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }

  .about__wrapper {
    flex-direction: row;
    align-items: stretch;
  }
  .about__image-wrapper { flex: 0 0 40%; }
  .about__image { aspect-ratio: auto; height: 100%; }
  .about__content { flex: 1; }

  .gallery__grid { grid-template-columns: repeat(4, 1fr); }
  .gallery__item:nth-child(5n+1) { grid-column: span 2; grid-row: span 2; }

  .case-study__item { flex-direction: row; align-items: center; gap: 32px; }
  .case-study__image { flex: 0 0 40%; aspect-ratio: 4/3; }

  .reviews-container { padding: 0 16px; }
  .about-beliefs { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 767px) {
  .problems-list { grid-template-columns: 1fr; }
  .review-card { min-width: calc(100% - 16px); }
  .reviews-container { padding: 0 8px; }
  .footer-grid { grid-template-columns: 1fr 1fr; text-align: center; padding: 0 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand__tagline { max-width: 100%; }
  .footer-social { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 20px 24px; }
  .float-phone { bottom: 88px; right: 24px; }
  .cta-split { grid-template-columns: 1fr; gap: 40px; }
  .about-beliefs { grid-template-columns: 1fr !important; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .process-flow { flex-direction: column; gap: 24px; align-items: stretch; }
  .process-arrow { transform: rotate(90deg); justify-content: center; padding: 0; }
  .inline-form-strip__container { flex-direction: column; text-align: center; }
  .inline-form-strip__form { flex-direction: column; width: 100%; }
  .inline-form-strip__form input { width: 100%; }
  .inline-form-strip__form button { width: 100%; justify-content: center; }
}
