/* ==========================================================================
   CALLPAGE.IO STYLE CUSTOM CALLBACK WIDGET & POPUP
   Webtual Technologies - Clean Minimalist CallPage UI
   ========================================================================== */

/* --- Floating 'Hire Us' CTA Button (Desktop) --- */
.floating-hire-us-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 12px 26px;
  background: #28a8e0;
  color: #ffffff !important;
  border-radius: 8px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(40, 168, 224, 0.4);
  z-index: 9995;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  display: none;
  line-height: 1.2;
}

@media (min-width: 1024px) {
  .floating-hire-us-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

.floating-hire-us-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(40, 168, 224, 0.55);
  color: #ffffff !important;
}

/* --- Floating CallPage Trigger Widget --- */
.cp-widget-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family:
    "Plus Jakarta Sans",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
}

/* On Desktop: Stacked above 'Hire Us' */
@media (min-width: 1024px) {
  .cp-widget-container {
    bottom: 84px;
    right: 20px;
  }
}

/* #topto position is handled by Tailwind classes in footer.php (bottom-40 right-7) */

/* Floating Sonar Ring Button */
.cp-trigger-btn {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3d56b2 0%, #28a8e0 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 10px 25px -3px rgba(61, 86, 178, 0.45);
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  padding: 0;
}

.cp-trigger-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 15px 35px -3px rgba(61, 86, 178, 0.55);
}

.cp-trigger-btn:active {
  transform: scale(0.96);
}

.cp-trigger-icon {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.cp-trigger-icon svg {
  display: block;
  margin: auto;
}

.cp-trigger-btn:hover .cp-trigger-icon {
  animation: cpRinging 1.2s ease-in-out infinite;
}

/* Pulsing Sonar Waves */
.cp-sonar-wave {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(40, 168, 224, 0.45) 0%,
    rgba(61, 86, 178, 0.15) 70%,
    transparent 100%
  );
  transform: translate(-50%, -50%) scale(1);
  pointer-events: none;
  animation: cpSonar 2.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

.cp-sonar-wave-2 {
  animation-delay: 1.2s;
}

@keyframes cpSonar {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.2);
    opacity: 0;
  }
}

@keyframes cpRinging {
  0%,
  100% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(-12deg);
  }
  20% {
    transform: rotate(12deg);
  }
  30% {
    transform: rotate(-8deg);
  }
  40% {
    transform: rotate(8deg);
  }
  50% {
    transform: rotate(-3deg);
  }
  60% {
    transform: rotate(3deg);
  }
  70% {
    transform: rotate(0deg);
  }
}

/* Online Indicator Dot on Button */
.cp-badge-online {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  background: #10b981;
  border: 2.5px solid #ffffff;
  border-radius: 50%;
  z-index: 3;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.25);
  animation: cpPulseGreen 2s infinite;
}

@keyframes cpPulseGreen {
  0%,
  100% {
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.4);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.1);
  }
}

/* Teaser / Tooltip Speech Bubble */
.cp-teaser-bubble {
  background: #ffffff;
  border-radius: 16px;
  padding: 10px 16px 10px 12px;
  box-shadow:
    0 10px 30px -5px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  position: relative;
  max-width: 290px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    box-shadow 0.25s ease;
  animation: cpSlideInRight 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cp-teaser-bubble:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px -5px rgba(0, 0, 0, 0.18);
}

.cp-teaser-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #28a8e0;
  flex-shrink: 0;
}

.cp-teaser-text {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.35;
}

.cp-teaser-text span.highlight {
  color: #3d56b2;
  font-weight: 700;
}

.cp-teaser-close {
  background: transparent;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 3px;
  margin-left: 2px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-size: 14px;
}

.cp-teaser-close:hover {
  color: #475569;
  background: #f1f5f9;
}

@keyframes cpSlideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ==========================================================================
   CLEAN MINIMALIST MODAL (MATCHING REFERENCE UI)
   ========================================================================== */
.cp-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
  font-family:
    "Plus Jakarta Sans",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
}

.cp-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cp-modal-window {
  background: #ffffff;
  width: 100%;
  max-width: 640px;
  border-radius: 20px;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.25);
  overflow: visible;
  position: relative;
  padding: 24px 32px 32px 32px;
  transform: scale(0.94) translateY(15px);
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.3s ease;
  opacity: 0;
  box-sizing: border-box;
}

.cp-modal-overlay.active .cp-modal-window {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Top Close Button */
.cp-modal-close-btn {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #3d56b2;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
  padding: 0;
}

.cp-modal-close-btn:hover {
  color: #1e3a8a;
  transform: scale(1.15);
}

/* Top 3 Navigation Tabs with Dividers */
.cp-nav-tabs {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-bottom: 20px;
  margin-bottom: 24px;
  position: relative;
}

.cp-tab-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  color: #64748b;
  font-size: 13.5px;
  font-weight: 500;
  font-family: inherit;
  transition: color 0.2s ease;
  padding: 8px 4px;
  -webkit-tap-highlight-color: transparent;
}

.cp-tab-item svg {
  color: #64748b;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.cp-tab-item:hover {
  color: #3d56b2;
}

.cp-tab-item:hover svg {
  color: #3d56b2;
  transform: translateY(-2px);
}

.cp-tab-item.active {
  color: #3d56b2;
  font-weight: 700;
}

.cp-tab-item.active svg {
  color: #3d56b2;
}

/* Vertical Thin Divider between Tabs */
.cp-tab-divider {
  width: 1px;
  height: 42px;
  background: #e2e8f0;
  flex-shrink: 0;
}

/* Modal Content Area */
.cp-center-content {
  text-align: center;
}

/* Brand Logo Container */
.cp-brand-logo-wrap {
  margin-bottom: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cp-brand-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

/* Big Catchy Title */
.cp-clean-title {
  font-size: 28px;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.3;
  margin: 0 0 28px 0;
  letter-spacing: -0.02em;
  font-family: inherit;
  text-decoration: none !important;
  border: none !important;
}

/* Inline Phone Input & CTA Row */
.cp-inline-form-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 12px;
  max-width: 520px;
  width: 100%;
  margin: 0 auto 20px auto;
}

/* Phone Input Box */
.cp-phone-box {
  flex: 1;
  display: flex;
  align-items: center;
  border: 1.5px solid #3d56b2;
  border-radius: 8px;
  background: #ffffff;
  height: 50px;
  padding: 0 14px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  box-sizing: border-box;
  min-width: 0;
}

.cp-phone-box:focus-within {
  border-color: #2b4299;
  box-shadow: 0 0 0 3px rgba(61, 86, 178, 0.18);
}

/* Country Selector Inside Input */
.cp-phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  margin-right: 8px;
  flex-shrink: 0;
}

.cp-phone-hint {
  font-size: 12.5px;
  font-weight: 500;
  color: #64748b;
  margin-top: -8px;
  margin-bottom: 12px;
  text-align: center;
}

.cp-clean-phone-input {
  flex: 1;
  width: 100%;
  min-width: 0;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  color: #0f172a;
  font-family: inherit;
  background: transparent;
  padding: 0;
  height: 100%;
}

.cp-clean-phone-input::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

/* Big Blue CTA Button */
.cp-clean-submit-btn {
  background: #3d56b2;
  color: #ffffff !important;
  border: none;
  border-radius: 8px;
  padding: 0 28px;
  height: 50px;
  font-size: 15.5px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(61, 86, 178, 0.35);
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
  font-family: inherit;
  flex-shrink: 0;
}

.cp-clean-submit-btn:hover {
  background: #324794;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(61, 86, 178, 0.45);
}

.cp-clean-submit-btn:active {
  transform: translateY(0);
}

/* Country Dropdown Popup */
.cp-country-popup {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 260px;
  max-height: 230px;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 12px;
  box-shadow:
    0 16px 36px -4px rgba(15, 23, 42, 0.25),
    0 0 0 1px rgba(0, 0, 0, 0.08);
  z-index: 999999;
  display: none;
  padding: 6px;
}

.cp-country-popup.open {
  display: block;
  animation: cpFadeUp 0.15s ease;
}

.cp-country-popup::-webkit-scrollbar {
  width: 5px;
}

.cp-country-popup::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.cp-country-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13.5px;
  color: #334155;
  transition:
    background 0.15s ease,
    color 0.15s ease;
  text-align: left;
}

.cp-country-item:hover {
  background: #eff6ff;
  color: #3d56b2;
}

.cp-country-item .opt-country-name {
  flex: 1;
  font-weight: 500;
}

.cp-country-item .opt-country-code {
  font-size: 12.5px;
  font-weight: 600;
  color: #64748b;
}

.cp-flag-svg {
  width: 22px;
  height: 16px;
  border-radius: 3px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
  display: block;
}

/* Inline AJAX Error Messages */
.cp-inline-error {
  display: none;
  color: #ef4444;
  font-size: 12.5px;
  font-weight: 500;
  margin-top: 8px;
  margin-bottom: 8px;
  text-align: center;
}

/* Trust / Proof Subtitles */
.cp-social-proof {
  font-size: 13.5px;
  font-weight: 500;
  color: #64748b;
  margin: 0 0 8px 0;
}

.cp-privacy-text {
  font-size: 12.5px;
  color: #94a3b8;
  margin: 0;
}

/* Tabs 2 & 3 Custom Layout */
.cp-tab-pane {
  display: none;
}

.cp-tab-pane.active {
  display: block;
  animation: cpFadeUp 0.25s ease;
}

@keyframes cpFadeUp {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cp-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.cp-input-control {
  width: 100%;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  color: #0f172a;
  font-family: inherit;
  box-sizing: border-box;
  outline: none;
}

.cp-input-control:focus {
  border-color: #3d56b2;
}

/* Tab 2: Date + Time Select Row */
.cp-sched-datetime-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cp-sched-date-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.cp-sched-date-input {
  width: 100%;
  height: 48px;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  padding: 0 14px;
  font-size: 14.5px;
  font-weight: 600;
  color: #0f172a;
  font-family: inherit;
  background: #ffffff;
  cursor: pointer;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cp-sched-date-input:focus {
  border-color: #3d56b2;
  box-shadow: 0 0 0 3px rgba(61, 86, 178, 0.15);
}

.cp-sched-date-input::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.65;
  transition: opacity 0.2s ease;
  padding: 4px;
}

.cp-sched-date-input::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

.cp-sched-select-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.cp-sched-select {
  width: 100%;
  height: 48px;
  appearance: none;
  -webkit-appearance: none;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  padding: 0 34px 0 14px;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  font-family: inherit;
  background: #ffffff;
  cursor: pointer;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cp-sched-select:focus {
  border-color: #3d56b2;
  box-shadow: 0 0 0 3px rgba(61, 86, 178, 0.15);
}

.cp-sched-caret {
  position: absolute;
  right: 12px;
  color: #64748b;
  font-size: 11px;
  pointer-events: none;
  top: 50%;
  transform: translateY(-50%);
}

/* Tab 3: Two-column message layout */
.cp-msg-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 560px;
  margin: 0 auto;
  align-items: start;
}

.cp-msg-left {
  display: flex;
  flex-direction: column;
}

/* Textarea wrapper for char count positioning */
.cp-msg-textarea-wrap {
  position: relative;
}

.cp-msg-char-count {
  position: absolute;
  top: 6px;
  right: 10px;
  font-size: 11px;
  color: #94a3b8;
  font-weight: 500;
  pointer-events: none;
  z-index: 1;
  line-height: 1;
}

.cp-msg-textarea {
  width: 100%;
  height: 148px;
  border: 1.5px solid #3d56b2;
  border-radius: 8px;
  padding: 10px 12px 10px 12px;
  font-size: 14px;
  color: #0f172a;
  font-family: inherit;
  box-sizing: border-box;
  outline: none;
  resize: none;
  line-height: 1.5;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.cp-msg-textarea:focus {
  border-color: #2b4299;
  box-shadow: 0 0 0 3px rgba(61, 86, 178, 0.18);
}

.cp-msg-textarea::placeholder {
  color: #94a3b8;
}

.cp-msg-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Fix phone box in message tab - should have blue border not red */
#cpTabMessage .cp-phone-box {
  border-color: #cbd5e1;
  min-height: 44px;
  padding: 0 10px;
}

#cpTabMessage .cp-phone-box:focus-within {
  border-color: #3d56b2;
  box-shadow: 0 0 0 3px rgba(61, 86, 178, 0.18);
}

#cpTabMessage .cp-input-control {
  height: 44px;
  padding: 0 14px;
  line-height: 44px;
  box-sizing: border-box;
}

#cpTabMessage .cp-clean-submit-btn {
  height: 44px;
  padding: 0 16px;
}

/* Fix phone box in schedule tab too */
#cpTabSchedule .cp-phone-box {
  height: 50px;
}

@media (max-width: 560px) {
  .cp-msg-two-col {
    grid-template-columns: 1fr;
  }

  .cp-sched-datetime-row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   28-SECOND COUNTDOWN SCREEN (MATCHING CLEAN WHITE THEME)
   ========================================================================== */
.cp-countdown-screen {
  padding: 16px 8px;
  text-align: center;
  display: none;
}

.cp-countdown-screen.active {
  display: block;
  animation: cpFadeUp 0.3s ease;
}

.cp-timer-ring-container {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 0 auto 18px auto;
}

.cp-timer-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.cp-timer-bg-circle {
  fill: none;
  stroke: #e2e8f0;
  stroke-width: 8;
}

.cp-timer-progress-circle {
  fill: none;
  stroke: #3d56b2;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 377;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1s linear;
}

.cp-timer-content-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cp-timer-number {
  font-size: 38px;
  font-weight: 800;
  color: #1e293b;
  line-height: 1;
}

.cp-timer-sec-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #64748b;
  margin-top: 4px;
}

.cp-calling-title {
  font-size: 20px;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 6px 0;
}

.cp-calling-number {
  font-size: 15px;
  font-weight: 700;
  color: #3d56b2;
  background: #eff6ff;
  padding: 4px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 14px;
}

.cp-soundwave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 22px;
  margin-bottom: 16px;
}

.cp-soundwave-bar {
  width: 4px;
  height: 8px;
  background: #3d56b2;
  border-radius: 3px;
  animation: cpWave 1.2s ease-in-out infinite;
}

.cp-soundwave-bar:nth-child(1) {
  animation-delay: 0.1s;
}
.cp-soundwave-bar:nth-child(2) {
  animation-delay: 0.3s;
}
.cp-soundwave-bar:nth-child(3) {
  animation-delay: 0.5s;
}
.cp-soundwave-bar:nth-child(4) {
  animation-delay: 0.2s;
}
.cp-soundwave-bar:nth-child(5) {
  animation-delay: 0.4s;
}

@keyframes cpWave {
  0%,
  100% {
    height: 6px;
    opacity: 0.3;
  }
  50% {
    height: 20px;
    opacity: 1;
    background: #28a8e0;
  }
}

.cp-calling-note {
  font-size: 13.5px;
  color: #64748b;
  margin: 0 auto 18px auto;
  max-width: 380px;
}

.cp-cancel-btn {
  background: #f1f5f9;
  color: #64748b;
  border: none;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.cp-cancel-btn:hover {
  background: #fee2e2;
  color: #dc2626;
}

/* Success Card */
.cp-success-screen {
  padding: 24px 12px;
  text-align: center;
  display: none;
}

.cp-success-screen.active {
  display: block;
  animation: cpFadeUp 0.3s ease;
}

.cp-success-icon {
  width: 58px;
  height: 58px;
  background: #ecfdf5;
  color: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px auto;
}

.cp-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.cp-whatsapp-btn:hover {
  background: #1da851;
  transform: translateY(-1px);
  color: #ffffff !important;
}

/* Responsive */
@media (max-width: 640px) {
  .cp-modal-window {
    padding: 24px 18px 28px 18px;
    border-radius: 16px;
  }

  .cp-clean-title {
    font-size: 22px;
    margin-bottom: 22px;
  }

  .cp-teaser-bubble {
    display: none;
  }

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

/* Only stack input & button on ultra-small mobile screens below 440px */
@media (max-width: 440px) {
  .cp-inline-form-row {
    flex-direction: column;
    gap: 10px;
  }

  .cp-clean-submit-btn {
    width: 100%;
  }
}
