/* ================================================================
   EXPODINE – Book a Demo Landing Page Stylesheet
   File: style.css
   Fonts loaded via HTML: Inter + Plus Jakarta Sans (Google Fonts)
   ================================================================ */

/* ─── CSS VARIABLES ─── */
:root {
  --teal: #00B5AD;
  --teal-dark: #009691;
  --teal-light: #E0F7F6;
  --orange: #FF6B2B;
  --orange-dark: #e55a1f;
  --dark: #0D1117;
  --dark2: #161C24;
  --mid: #2C3545;
  --slate: #64748B;
  --light: #F8FAFC;
  --white: #ffffff;
  --wa-green: #25D366;
  --gold: #FFB800;
  --shadow: 0 8px 32px rgba(0, 0, 0, .10);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, .18);
}

/* ─── RESET & BASE ─── */
.demo-landing *,
.demo-landing *::before,
.demo-landing *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

.demo-landing {
  font-family: 'Inter', sans-serif;
  background: var(--light);
  color: var(--dark);
  font-size: 15px;
  line-height: 1.6;
}

.demo-landing img {
  display: block;
  max-width: 100%;
}

.demo-landing a {
  color: inherit;
}

/* ─── KEYFRAMES ─── */
@keyframes pulseBtn {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 43, .6);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(255, 107, 43, 0);
  }
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .3;
  }
}

@keyframes rippleCall {
  0% {
    width: 32px;
    height: 32px;
    opacity: .7;
  }

  100% {
    width: 64px;
    height: 64px;
    opacity: 0;
  }
}

@keyframes rippleCallLg {
  0% {
    width: 60px;
    height: 60px;
    opacity: .7;
  }

  100% {
    width: 110px;
    height: 110px;
    opacity: 0;
  }
}

@keyframes rippleWA {
  0% {
    transform: scale(1);
    opacity: .8;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@keyframes shakePhone {

  0%,
  100% {
    transform: rotate(0);
  }

  10% {
    transform: rotate(-15deg);
  }

  20% {
    transform: rotate(15deg);
  }

  30% {
    transform: rotate(-10deg);
  }

  40% {
    transform: rotate(10deg);
  }

  50% {
    transform: rotate(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bubbleIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ════════════════════════════════════════
   HEADER
   ════════════════════════════════════════ */
.site-header {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.header-top {
  background: #f6361c;
  text-align: center;
  padding: 6px 20px;
  font-size: 12.5px;
  color: #fff;
  font-weight: 500;
  letter-spacing: .3px;
}

.header-top a {
  color: #fff;
  text-decoration: none;
  margin: 0 8px;
}

.header-main {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 16px;
}

.logo img {
  height: 44px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav a {
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}

.nav a:hover {
  color: var(--teal);
}

.btn-book-nav {
  background: var(--orange);
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  animation: pulseBtn 2.5s infinite;
  transition: background .2s;
}

.btn-book-nav:hover {
  background: var(--orange-dark);
}


/* ════════════════════════════════════════
   HERO / BANNER
   ════════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, #0D1117 0%, #1a2535 50%, #0e2323 100%);
  position: relative;
  overflow: hidden;
  min-height: 580px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 125px 60px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(0, 181, 173, .12) 0%, transparent 65%);
  pointer-events: none;
}

/* badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 181, 173, .15);
  border: 1px solid rgba(0, 181, 173, .35);
  color: var(--teal);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: .5px;
}

.hero-badge span {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: blink 1.4s infinite;
}

/* title */
.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-title .accent {
  color: var(--teal);
}

.hero-title .orange {
  color: var(--orange);
}

.hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, .68);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}

/* hero CTAs */
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 32px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  animation: pulseBtn 2.5s infinite;
  transition: background .2s, transform .15s;
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--dark);
  padding: 13px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
}

.btn-call .call-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.btn-call .call-icon::before,
.btn-call .call-icon::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--teal);
  animation: rippleCall 2s ease-out infinite;
}

.btn-call .call-icon::after {
  animation-delay: .7s;
}

.call-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.call-text small {
  font-size: 10px;
  font-weight: 500;
  color: var(--slate);
}

.call-text strong {
  font-size: 14px;
}

/* hero stats */
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}

.stat-lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  letter-spacing: .8px;
}

/* hero image mosaic */
.hero-visual {
  position: relative;
  height: 420px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  border-radius: 20px;
  overflow: hidden;
}

.hero-img {
  overflow: hidden;
  border-radius: 12px;
  background: var(--mid);
  position: relative;
}

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

.hero-img:first-child {
  grid-row: span 2;
}

.hero-img .img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .45) 0%, transparent 60%);
}

.hero-pill {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(0, 0, 0, .7);
  backdrop-filter: blur(10px);
  color: #fff;
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
}


/* ════════════════════════════════════════
   TRUST BAR
   ════════════════════════════════════════ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid #E8EDF3;
  padding: 18px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  overflow-x: auto;
  flex-wrap: wrap;
}

.trust-bar-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.trust-logos span {
  font-size: 13px;
  font-weight: 600;
  color: #94A3B8;
  white-space: nowrap;
}

.trust-logos span strong {
  color: var(--dark);
}


/* ════════════════════════════════════════
   MAIN 2-COL SECTION  (benefits | form)
   ════════════════════════════════════════ */
.section-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 24px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* ── Left: benefits ── */
/* .benefits-side {} */

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--teal);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 32px;
}

/* benefit cards */
.benefit-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.benefit-card {
  background: var(--white);
  border: 1px solid #E8EDF3;
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: box-shadow .2s, transform .2s;
}

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

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.benefit-card h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}

.benefit-card p {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.6;
}

/* call now box (beneath benefits) */
.cta-call-box {
  background: linear-gradient(135deg, var(--teal-light) 0%, #fff 100%);
  border: 1.5px solid rgba(0, 181, 173, .25);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.call-gif-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.call-gif-wrap::before,
.call-gif-wrap::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--teal);
  animation: rippleCallLg 2s ease-out infinite;
}

.call-gif-wrap::after {
  animation-delay: .9s;
}

.call-gif-wrap svg {
  z-index: 1;
  position: relative;
  animation: shakePhone 2s infinite;
}

.call-content h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.call-content p {
  font-size: 12px;
  color: var(--slate);
  margin-bottom: 8px;
}

.call-numbers {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.call-numbers a {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
  transition: color .2s;
}

.call-numbers a:hover {
  color: var(--teal-dark);
}

/* ── Right: demo form ── */
.form-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.form-header {
  background: linear-gradient(135deg, var(--orange) 0%, #ff8c42 100%);
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
}

.form-header::before {
  content: '';
  position: absolute;
  right: -30px;
  top: -30px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .10);
}

.form-header h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.form-header p {
  color: rgba(255, 255, 255, .85);
  font-size: 14px;
}

.form-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .2);
  color: #fff;
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 12px;
}

.form-body {
  padding: 28px 32px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--mid);
  margin-bottom: 6px;
}

.form-group label .req {
  color: var(--orange);
}

#demo-form .form-control {
  box-sizing: border-box !important;
  width: 100% !important;
  height: 45px !important;
  font-size: 14px !important;
  padding: 10px 15px !important;
  border: 1.5px solid #E2E8F0 !important;
  border-radius: 10px !important;
  border-width: 1.5px !important;
  font-family: 'Inter', sans-serif !important;
  color: var(--dark) !important;
  background: #F8FAFC !important;
  transition: border-color .2s, box-shadow .2s !important;
  outline: none !important;
  margin-bottom: 0 !important;
}

#demo-form .form-control:focus {
  border-color: var(--teal) !important;
  box-shadow: 0 0 0 3px rgba(0, 181, 173, .12) !important;
  background: #fff !important;
}

#demo-form select.form-control {
  cursor: pointer !important;
  width: 100% !important;
  max-width: none !important;
  display: block !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 15px center !important;
  background-size: 16px !important;
  padding-right: 40px !important;
}

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

.btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--orange);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  animation: pulseBtn 2.5s infinite;
  transition: background .2s, transform .15s;
  margin-top: 4px;
  font-family: 'Inter', sans-serif;
}

.btn-submit:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--slate);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}


/* ════════════════════════════════════════
   TESTIMONIALS — FULL-WIDTH SECTION
   Three distinct sub-sections:
   1. Featured hero quote  (dark card)
   2. Three equal cards    (light grid)
   3. Social proof bar     (teal band)
   ════════════════════════════════════════ */
.section-testimonials {
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 0 24px 80px;
}

.testi-section-head {
  text-align: center;
  margin-bottom: 40px;
}

.testi-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--orange);
  margin-bottom: 10px;
}

.testi-section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 12px;
}

.testi-section-sub {
  font-size: 15px;
  color: var(--slate);
  margin: 0 auto;
}

/* ── Sub-section 1: Featured hero card ── */
.testi-sub1 {
  margin-bottom: 28px;
}

.testi-featured {
  background: linear-gradient(135deg, #0D1117 0%, #1a2535 60%, #0a2020 100%);
  border-radius: 22px;
  padding: 44px 48px 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 181, 173, .2);
  animation: fadeIn .6s ease both;
}

.testi-slides-container {
  position: relative;
  width: 100%;
}

.testi-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.testi-slide.active {
  display: block;
  opacity: 1;
}

.testi-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  position: relative;
  z-index: 10;
}

.testi-slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.testi-slider-dots .dot.active {
  background: var(--teal);
  transform: scale(1.2);
}

.testi-slider-dots .dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.testi-featured::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 181, 173, .18) 0%, transparent 70%);
  pointer-events: none;
}

.testi-featured::after {
  content: '';
  position: absolute;
  bottom: -70px;
  left: -30px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 43, .10) 0%, transparent 70%);
  pointer-events: none;
}

.testi-quote-mark {
  font-family: Georgia, serif;
  font-size: 120px;
  line-height: .9;
  color: var(--teal);
  opacity: .35;
  position: absolute;
  top: 16px;
  left: 38px;
  pointer-events: none;
  user-select: none;
}

.testi-featured-body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.testi-featured-text {
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255, 255, 255, .88);
  font-style: italic;
  padding-top: 36px;
  border-left: 3px solid var(--teal);
  padding-left: 24px;
}

.testi-featured-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 130px;
}

.testi-featured-logo {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  object-fit: cover;
  border: 2px solid rgba(0, 181, 173, .4);
  background: rgba(255, 255, 255, .06);
}

.testi-featured-name {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.testi-featured-stars {
  font-size: 16px;
  color: var(--gold);
  letter-spacing: 2px;
}

.testi-verified {
  background: rgba(0, 181, 173, .18);
  border: 1px solid rgba(0, 181, 173, .35);
  color: var(--teal);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

/* ── Sub-section 2: Three equal cards ── */
.testi-sub2 {
  margin-bottom: 28px;
  position: relative;
}

.testi-cards-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 10px 5px 20px;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.testi-cards-grid::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.testi-cards-grid {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.testi-card {
  background: var(--white);
  border: 1px solid #E8EDF3;
  border-radius: 18px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s, border-color .25s;
  animation: fadeIn .6s ease both;
  flex: 0 0 calc(33.333% - 14px);
  scroll-snap-align: start;
}

.testi-card:nth-child(2) {
  animation-delay: .1s;
}

.testi-card:nth-child(3) {
  animation-delay: .2s;
}

.testi-card:nth-child(4) {
  animation-delay: .3s;
}

.testi-card:nth-child(5) {
  animation-delay: .4s;
}

.testi-card:nth-child(6) {
  animation-delay: .5s;
}

.testi-slider-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.testi-arrow {
  background: var(--white);
  border: 1.5px solid #E8EDF3;
  color: var(--slate);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  outline: none;
}

.testi-arrow:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 181, 173, 0.25);
}

.testi-arrow:active {
  transform: translateY(0);
}

.testi-card:hover {
  box-shadow: 0 12px 40px rgba(0, 181, 173, .14);
  transform: translateY(-4px);
  border-color: rgba(0, 181, 173, .3);
}

.testi-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 72px;
  line-height: 1;
  color: var(--teal);
  opacity: .12;
  position: absolute;
  top: 10px;
  left: 18px;
  pointer-events: none;
  user-select: none;
}

.testi-card-stars {
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 2px;
}

.testi-card-quote {
  font-size: 14px;
  line-height: 1.75;
  color: var(--slate);
  font-style: italic;
  flex: 1;
  padding-top: 4px;
}

.testi-card-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid #F1F5F9;
}

.testi-card-author img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
  background: #f1f5f9;
  border: 1.5px solid #E2E8F0;
}

/* .testi-author-info {} */

.testi-card-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--mid);
}

.testi-card-role {
  font-size: 11.5px;
  color: var(--slate);
}

/* ── Sub-section 3: Social proof rating bar ── */
/* .testi-sub3 {} */

.testi-proof-bar {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  border-radius: 18px;
  padding: 28px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.proof-stat {
  flex: 1;
}

.proof-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.proof-lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, .75);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-top: 4px;
}

.proof-divider {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, .25);
  margin: 0 auto;
}




/* ════════════════════════════════════════
   FLOATING ELEMENTS
   ════════════════════════════════════════ */

/* Floating Call Now */
.float-call {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 1000;
  background: var(--teal);
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px 12px 14px;
  box-shadow: 0 8px 32px rgba(0, 181, 173, .4);
  text-decoration: none;
  color: #fff;
  transition: transform .2s;
}

.float-call:hover {
  transform: translateY(-3px);
}

.float-call .icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.float-call .icon-wrap::before,
.float-call .icon-wrap::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .5);
  animation: rippleCall 2s ease-out infinite;
}

.float-call .icon-wrap::after {
  animation-delay: .8s;
}

.float-call svg {
  animation: shakePhone 2.5s infinite;
  position: relative;
  z-index: 1;
}

.float-call-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.float-call-text small {
  font-size: 10px;
  font-weight: 500;
  opacity: .8;
}

.float-call-text strong {
  font-size: 14px;
  font-weight: 700;
}

/* WhatsApp float styles migrated to global footer.php */


/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width:1024px) {
  .testi-proof-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-divider {
    display: none;
  }
}

@media (max-width:900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 50px 30px;
    min-height: auto;
  }

  .hero-visual {
    height: 260px;
  }

  .section-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-card {
    position: static;
  }


  .trust-bar {
    padding: 16px 24px;
  }

  .nav {
    display: none;
  }

  .testi-featured-body {
    grid-template-columns: 1fr;
  }

  .testi-featured-meta {
    flex-direction: row;
    align-items: center;
    min-width: auto;
  }

  .testi-card {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width:700px) {
  .testi-card {
    flex: 0 0 100%;
  }

  .testi-proof-bar {
    grid-template-columns: 1fr 1fr;
    padding: 24px;
  }

  .testi-featured {
    padding: 28px 24px 24px;
  }

  .testi-featured-text {
    font-size: 15px;
  }


  .form-row {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 40px 20px;
  }

  .float-call-text {
    display: none;
  }

  .float-call {
    padding: 12px;
    border-radius: 50%;
  }

  .section-testimonials {
    padding: 0 16px 60px;
  }
}

@media (max-width:480px) {
  .testi-proof-bar {
    grid-template-columns: 1fr;
  }
}



/* Fix footer flag images being displayed as block-level elements */
.foot_cnt img {
  display: inline-block !important;
  vertical-align: middle !important;
  margin: 0 4px !important;
}

/* Styling for flags in the trust-bar */
.trust-flag {
  display: inline-block !important;
  vertical-align: middle !important;
  width: 22px !important;
  height: auto !important;
  margin-right: 6px !important;
  border-radius: 2px !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1) !important;
  position: relative;
  top: -1px;
}