/* Hero Section Styles */

.hero-section {
  min-height: 85vh;
  position: relative;
  padding: 84px 0 64px;
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow: hidden;
  background-color: #fafcff;
}

.hero-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.hero-img-continer-dispaly {
  display: flex;
}

.hero-img-continer {
  position: absolute;
  justify-content: end;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 84px 0;
}

.hero-img-continer img {
  position: relative;
  right: -120px;
  height: 100%;
  object-fit: cover;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 540px;
}

.hero-title {
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 20px;
}

.hero-title .highlight-text {
  background: linear-gradient(90deg, #4361ee 0%, #6979f8 100%);
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 35px;
  font-weight: 500;
}

/* Badges Layout */

.hero-badges-container {
  display: flex;
  gap: 24px;
  width: 100%;
  justify-content: flex-start;
}

.hero-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  width: 80px;
}

.badge-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.hero-badge-item:hover .badge-icon-wrapper {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.badge-icon-wrapper.icon-blue {
  background-color: #eff6ff;
  color: #3b82f6;
}

.badge-icon-wrapper.icon-green {
  background-color: #f0fdf4;
  color: #22c55e;
}

.badge-icon-wrapper.icon-pink {
  background-color: #fdf2f8;
  color: #ec4899;
}

.badge-icon-wrapper.icon-purple {
  background-color: #faf5ff;
  color: #a855f7;
}

.badge-text {
  display: flex;
  flex-direction: column;
  font-size: 0.4rem;
  font-weight: 500;
  color: #475569;
}

.badge-text-line {
  display: block;
}

/* Right Column: Search Card & Trusted Badge */

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

.search-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: 24px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.search-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
}

.search-input-group {
  position: relative;
  margin-bottom: 16px;
}

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 0.95rem;
}

.search-input-group input {
  width: 100%;
  padding: 14px 16px 14px 44px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  font-family: inherit;
  font-size: 0.95rem;
  color: #0f172a;
  background: #fff;
  transition: all 0.3s ease;
}

.search-input-group input:focus {
  outline: none;
  border-color: #4361ee;
  box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.15);
}

.search-filters-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.filter-select-wrapper {
  position: relative;
}

.filter-select {
  width: 100%;
  padding: 12px 28px 12px 12px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  font-family: inherit;
  font-size: 0.85rem;
  color: #475569;
  background: #fff;
  appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.filter-select:focus {
  outline: none;
  border-color: #4361ee;
}

.select-chevron {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  font-size: 0.75rem;
  pointer-events: none;
}

.search-btn {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(90deg, #e91e63 0%, #ff4081 100%);
  color: white;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.25);
}

.search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.35);
}

/* Trusted Badge Styling */

.trusted-badge-container {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 100px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.5);
  margin-top: 20px;
  align-self: flex-end;
}

.avatar-group {
  display: flex;
  align-items: center;
}

.avatar-img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px;
  object-fit: cover;
}

.avatar-group .avatar-img:first-child {
  margin-left: 0;
}

.trusted-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: #475569;
}

/* Interactive Audience Switch */

.audience-switch {
  margin-bottom: 30px;
}

.switch-track {
  display: inline-flex;
  background: white;
  border-radius: 100px;
  padding: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.switch-option {
  padding: 12px 20px;
  border-radius: 100px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 2;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.switch-option i {
  font-size: 1rem;
}

.switch-option.active {
  color: white;
}

.switch-highlight {
  position: absolute;
  top: 6px;
  left: 6px;
  height: calc(100% - 12px);
  border-radius: 100px;
  background: linear-gradient(90deg, var(--primary) 0%, #6979f8 100%);
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    width 0.3s ease;
  z-index: 1;
  width: 148px;
}

.segment-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.segment-content.active {
  display: block;
}

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

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

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: white;
  border-radius: 100px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}

.animated-badge {
  position: relative;
  overflow: hidden;
}

.animated-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.animated-badge:hover::before {
  left: 100%;
}

.badge i {
  color: var(--primary);
}

.badge.blue i {
  color: var(--secondary);
}

.badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* Pulse Button */

.pulse-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  background: linear-gradient(90deg, var(--primary) 0%, #6979f8 100%);
  color: white;
  box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.pulse-button::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, var(--primary) 0%, #6979f8 100%);
  border-radius: var(--radius);
  z-index: -1;
}

.pulse-button::before {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  background: linear-gradient(90deg, var(--primary) 0%, #6979f8 100%);
  border-radius: var(--radius);
  z-index: -2;
  opacity: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }

  50% {
    opacity: 0.5;
  }

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

.pulse-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(67, 97, 238, 0.4);
}

.outline-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.outline-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(67, 97, 238, 0.1) 0%, transparent 100%);
  transition: left 0.3s ease;
}

.outline-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(67, 97, 238, 0.1);
}

.outline-button:hover::before {
  left: 100%;
}

/* Clients Bar */

.clients-bar {
  margin: auto;
  margin-top: 24px;
  margin-bottom: 24px;
  max-width: 1200px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pulse-circles {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 1;
}

.pulse-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(67, 97, 238, 0.03);
  animation: pulse-circle 3s infinite;
}

.pulse-circle.delay-1 {
  animation-delay: 1s;
}

.pulse-circle.delay-2 {
  animation-delay: 2s;
}

@keyframes pulse-circle {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }

  100% {
    width: 120%;
    height: 120%;
    opacity: 0;
  }
}

.clients-bar p {
  margin-bottom: 30px;
  font-weight: 500;
  color: var(--text-light);
  position: relative;
  z-index: 2;
}

.clients-logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.client-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.client-stat .client-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.counter {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.plus,
.percent {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 1rem;
  color: var(--text-light);
}

.client-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(67, 97, 238, 0.2), transparent);
}

/* Make it responsive */
@media (width >= 768px) {
  .mockup-device {
    max-width: 300px;
    margin: 0 auto;
  }

  .device-frame {
    transform: perspective(1000px) rotateY(0deg);
  }

  .floating-element {
    display: none;
  }
}

@media (width >= 320px) {
  .mockup-device {
    max-width: 300px;
    margin: 0 auto;
  }

  .device-frame {
    transform: perspective(1000px) rotateY(0deg);
  }

  .floating-element {
    display: none;
  }
}

/* Features Section */

.features {
  padding: 120px 0;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.section-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.circle-1 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: -200px;
  right: -200px;
}

.circle-2 {
  width: 300px;
  height: 300px;
  background: var(--secondary);
  bottom: -150px;
  left: -150px;
}

.bg-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* Improved Toggle for Features */

.audience-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.toggle-container {
  position: relative;
  display: inline-block;
  background: white;
  border-radius: 100px;
  padding: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.toggle-container input[type='radio'] {
  display: none;
}

.toggle-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 100px;
  cursor: pointer;
  font-weight: 600;
  gap: 8px;
  position: relative;
  z-index: 2;
  color: var(--text);
  min-width: 180px;
  transition: color 0.3s ease;
}

.toggle-option i {
  font-size: 1rem;
}

input[type='radio']:checked + .toggle-option {
  color: white;
}

.toggle-highlighter {
  position: absolute;
  top: 6px;
  left: 6px;
  height: calc(100% - 12px);
  width: 180px;
  border-radius: 100px;
  z-index: 1;
  background: linear-gradient(90deg, var(--primary) 0%, #6979f8 100%);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ///////////////////////// */

.audience-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.toggle-container {
  position: relative;
  display: inline-flex;
  background: white;
  border-radius: 100px;
  padding: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.toggle-container input[type='radio'] {
  display: none;
}

.toggle-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 100px;
  cursor: pointer;
  font-weight: 600;
  gap: 8px;
  position: relative;
  z-index: 2;
  color: var(--text);
  min-width: 180px;
  transition: color 0.3s ease;
}

.toggle-option i {
  font-size: 1rem;
}

input[type='radio']:checked + .toggle-option {
  color: white;
}

.toggle-highlighter {
  position: absolute;
  top: 6px;
  left: 6px;
  height: calc(100% - 12px);
  width: 180px;
  border-radius: 100px;
  z-index: 1;
  background: linear-gradient(90deg, var(--primary) 0%, #6979f8 100%);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

input[type='radio']:nth-of-type(2):checked ~ .toggle-highlighter {
  transform: translateX(calc(100% - 0px));
}

/* Mobile optimization for audience toggle */
@media (width <= 768px) {
  .toggle-container {
    width: 100%;
    max-width: 400px;
  }

  .toggle-option {
    flex: 1;
    padding: 12px 10px;
    min-width: 0;
    text-align: center;
    font-size: 0.9rem;
  }

  .toggle-option span {
    white-space: nowrap;
  }

  .toggle-highlighter {
    width: calc(50% - 6px);
  }

  input[type='radio']:nth-of-type(2):checked ~ .toggle-highlighter {
    transform: translateX(calc(100% + 0px));
  }
}

@media (width <= 480px) {
  .toggle-option {
    font-size: 0.8rem;
  }

  .toggle-option i {
    font-size: 0.9rem;
  }

  .toggle-option span {
    display: none;
  }

  .toggle-highlighter {
    width: calc(50% - 6px);
  }

  /* Add tooltips for icon-only view on very small screens */

  .toggle-option::after {
    content: attr(for);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.75rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    white-space: nowrap;
  }

  .toggle-option:hover::after {
    opacity: 1;
  }
}

/* ///////////////////////// */

input[type='radio']:nth-of-type(2):checked ~ .toggle-highlighter {
  transform: translateX(100%);
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: white;
  border-radius: var(--radius);
  padding: 40px 30px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary) 0%, #6979f8 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card.tenant::before {
  background: linear-gradient(90deg, var(--secondary) 0%, #ff9a6b 100%);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-wrapper {
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.feature-icon-wrapper::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: rgba(67, 97, 238, 0.1);
  border-radius: 20px;
  transform: rotate(-10deg);
  opacity: 0;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper::before {
  opacity: 1;
  transform: rotate(0deg);
}

.feature-icon-wrapper.tenant::before {
  background: rgba(255, 107, 53, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(67, 97, 238, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.feature-icon.tenant {
  background: rgba(255, 107, 53, 0.1);
}

.feature-icon i {
  font-size: 24px;
  color: var(--primary);
  transition: var(--transition);
}

.feature-icon.tenant i {
  color: var(--secondary);
}

.feature-card:hover .feature-icon {
  background: var(--primary);
}

.feature-card.tenant:hover .feature-icon {
  background: var(--secondary);
}

.feature-card:hover .feature-icon i {
  color: white;
}

.feature-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.feature-content h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.feature-content p {
  margin-bottom: 20px;
  color: var(--text-light);
}

.feature-list {
  list-style: none;
  margin-bottom: 20px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--text-light);
}

.feature-list i {
  color: var(--primary);
  font-size: 14px;
}

.feature-card.tenant .feature-list i {
  color: var(--secondary);
}

.feature-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.feature-link.tenant {
  color: var(--secondary);
}

.feature-link i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.feature-link:hover i {
  transform: translateX(5px);
}

/* Process Section */

.process {
  padding: 120px 0;
  background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
  position: relative;
}

.process-waves {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  overflow: hidden;
}

.process-waves svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Process Slider Design */

.process-slider {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.slider-track {
  display: inline-flex;
  background: white;
  border-radius: 100px;
  padding: 6px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slider-button {
  padding: 14px 24px;
  border-radius: 100px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 2;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
  min-width: 170px;
}

.slider-button i {
  font-size: 1rem;
}

.slider-button.active {
  color: white;
}

.slider-highlighter {
  position: absolute;
  top: 6px;
  left: 6px;
  height: calc(100% - 12px);
  width: 170px;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--primary) 0%, #6979f8 100%);
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    width 0.3s ease;
  z-index: 1;
}

.process-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.process-content.active {
  display: block;
}

.process-steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.step-card {
  background: white;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: var(--transition);
  position: relative;
  width: 250px;
}

.step-card.tenant {
  border-top: 5px solid var(--secondary);
}

.step-card:not(.tenant) {
  border-top: 5px solid var(--primary);
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.step-number {
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.step-card.tenant .step-number {
  background: var(--secondary);
}

.step-icon {
  width: 70px;
  height: 70px;
  background: rgba(67, 97, 238, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px auto 20px;
  transition: var(--transition);
}

.step-icon.tenant {
  background: rgba(255, 107, 53, 0.1);
}

.step-icon i {
  font-size: 28px;
  color: var(--primary);
}

.step-icon.tenant i {
  color: var(--secondary);
}

.step-card:hover .step-icon {
  background: var(--primary);
}

.step-card.tenant:hover .step-icon {
  background: var(--secondary);
}

.step-card:hover .step-icon i {
  color: white;
}

.step-content h3 {
  margin-bottom: 10px;
}

.step-content p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.step-connector {
  position: absolute;
  top: 50%;
  right: -45px;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, rgba(67, 97, 238, 0.3) 100%);
  z-index: 1;
}

.step-connector.tenant {
  background: linear-gradient(90deg, var(--secondary) 0%, rgba(255, 107, 53, 0.3) 100%);
}

.step-connector::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
}

.step-connector.tenant::after {
  background: var(--secondary);
}

/* Improved Testimonials Section */

.testimonials {
  padding-top: 120px;

  /* background: var(--bg-light); */
  position: relative;
}

.testimonial-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.t-shape {
  position: absolute;
  opacity: 0.1;
}

.t-shape-1 {
  top: 10%;
  left: 5%;
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 24px;
  transform: rotate(45deg);
}

.t-shape-2 {
  bottom: 20%;
  right: 10%;
  width: 120px;
  height: 120px;
  background: var(--primary);
  border-radius: 50%;
}

.t-shape-3 {
  top: 60%;
  left: 15%;
  width: 60px;
  height: 60px;
  background: var(--secondary);
  border-radius: 20px;
}

/* Testimonial Switcher */

.testimonial-switcher {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.switcher-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: white;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.option-icon {
  width: 34px;
  height: 34px;
  background: rgba(67, 97, 238, 0.1);
  color: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.switcher-option.active {
  box-shadow: 0 10px 30px rgba(67, 97, 238, 0.2);
  transform: translateY(-3px);
}

.switcher-option.active .option-icon {
  background: var(--primary);
  color: white;
}

.testimonial-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.testimonial-content.active {
  display: block;
}

/* Improved testimonial cards layout */

.testimonials-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  height: 100%;
  border-top: 5px solid var(--primary);
  display: flex;
  flex-direction: column;
}

.testimonial-card.tenant {
  border-top: 5px solid var(--secondary);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.testimonial-header {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--primary) 0%, #6979f8 100%);
}

.avatar-placeholder.tenant {
  background: linear-gradient(135deg, var(--secondary) 0%, #ff9a6b 100%);
}

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

.author-info h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  font-weight: 600;
}

.author-info p {
  margin: 0 0 8px;
  font-size: 0.4rem;
  color: var(--text-light);
}

.testimonial-rating {
  display: flex;
  gap: 2px;
}

.testimonial-rating i {
  color: #fbbf24;
  font-size: 14px;
}

.testimonial-body {
  flex: 1;
}

.testimonial-body i {
  font-size: 30px;
  color: var(--primary);
  opacity: 0.2;
  margin-bottom: 15px;
  display: block;
}

.testimonial-card.tenant .testimonial-body i {
  color: var(--secondary);
}

.testimonial-body p {
  font-size: 0.6rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 0;
}

/* Enhanced CTA Section with CSS-only mockups */

.cta {
  padding-top: 120px;
  background: linear-gradient(135deg, #3a56d4 0%, #4361ee 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-waves {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  overflow: hidden;
}

.cta-waves svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.cta h2 {
  color: white;
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  color: white;
}

.check-circle {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4ade80;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.glow-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: white;
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
}

.glow-button::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: white;
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.4;
  filter: blur(10px);
  transform: scale(0.9);
  transition: all 0.3s ease;
}

.glow-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.glow-button:hover::before {
  opacity: 0.6;
  transform: scale(1.1);
}

.white-outline-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: transparent;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.3s ease;
}

.white-outline-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-3px);
}

/* CSS-only device mockups */

.cta-mockups {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 40px;
  perspective: 1000px;
}

.device-mockup {
  width: fit-content;
  height: fit-content;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  transform: perspective(1000px) rotateY(-8deg) rotateX(5deg);
}

.device-mockup .phone-frame {
  width: 280px;
  height: 560px;
  border-radius: 30px;
}

.device-mockup .phone-frame::before {
  content: none;
}

.device-mockup.mobile .phone-frame {
  width: 260px;
  height: 520px;
  border-radius: 30px;
}

.device-mockup.mobile {
  width: fit-content;
  height: fit-content;
  transform: perspective(1000px) rotateY(8deg) rotateX(2deg) translateZ(30px) translateX(30px);
  z-index: 2;
}

.dashboard-stats {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.stat-box {
  flex: 1;
  background: white;
  border-radius: 12px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.stat-icon {
  width: 30px;
  height: 30px;
  background: rgba(67, 97, 238, 0.1);
  border-radius: 50%;
}

.stat-content {
  flex: 1;
}

.stat-value {
  height: 14px;
  width: 80%;
  background: #e2e8f0;
  border-radius: 4px;
  margin-bottom: 8px;
}

.stat-label {
  /* code */
}

.chart-legend {
  display: flex;
  gap: 10px;
}

.legend-item {
  width: 40px;
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
}

.chart-bars {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 100px;
}

.bar-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--primary-light);
  border-radius: 4px;
  animation: bar-fill 2s ease forwards;
}

@keyframes bar-fill {
  from {
    height: 0;
  }

  to {
    height: var(--height, 50%);
  }
}

/* Mobile app screen elements */

.mobile-app {
  background: #fcfcfc;
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.app-title {
  width: 80px;
  height: 14px;
  background: #e2e8f0;
  border-radius: 4px;
}

.app-action {
  width: 30px;
  height: 30px;
  background: #e2e8f0;
  border-radius: 50%;
}

.app-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.search-icon {
  width: 20px;
  height: 20px;
  background: #e2e8f0;
  border-radius: 50%;
}

.search-bar {
  flex: 1;
  height: 10px;
  background: #e2e8f0;
  border-radius: 5px;
}

.property-cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.property-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.property-image {
  height: 100px;
  background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary) 100%);
  margin-bottom: 12px;
}

.property-details {
  padding: 0 12px 12px;
}

.property-title {
  height: 12px;
  width: 80%;
  background: #e2e8f0;
  border-radius: 4px;
  margin-bottom: 8px;
}

.property-location {
  height: 8px;
  width: 60%;
  background: #e2e8f0;
  border-radius: 4px;
  margin-bottom: 8px;
}

.property-price {
  height: 10px;
  width: 40%;
  background: var(--secondary-light);
  border-radius: 4px;
}

.app-nav {
  position: absolute;
  bottom: 10px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  background: white;
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.nav-item {
  width: 32px;
  height: 32px;
  background: #e2e8f0;
  border-radius: 50%;
}

.nav-item.active {
  background: var(--secondary-light);
}

/* Media queries */
@media (width <= 992px) {
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .device-mockup {
    transform: perspective(1000px) rotateY(0) rotateX(5deg);
  }

  .device-mockup.mobile {
    display: none;
  }
}

@media (width <= 768px) {
  .testimonials-row {
    grid-template-columns: 1fr;
  }

  .testimonial-switcher {
    flex-direction: column;
    align-items: center;
  }

  .switcher-option {
    width: 100%;
    justify-content: center;
  }
}

/* CTA Section */

.cta {
  background: linear-gradient(135deg, #3a56d4 0%, #4361ee 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-waves {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  overflow: hidden;
}

.cta-waves svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.cta h2 {
  color: white;
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  color: white;
}

.check-circle {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4ade80;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.glow-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: white;
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
}

.glow-button::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: white;
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.4;
  filter: blur(10px);
  transform: scale(0.9);
  transition: all 0.3s ease;
}

.glow-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.glow-button:hover::before {
  opacity: 0.6;
  transform: scale(1.1);
}

.white-outline-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: transparent;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.3s ease;
}

.white-outline-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-3px);
}

.cta-image-container {
  position: relative;
  padding: 20px;
}

.floating-screens {
  position: relative;
  perspective: 1000px;
}

.screen {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  background: white;
  position: relative;
}

.screen img {
  width: 100%;
  height: auto;
  display: block;
}

.screen-1 {
  transform: perspective(1000px) rotateY(-15deg) rotateX(5deg) translateZ(20px);
  animation: float-screen 4s infinite alternate ease-in-out;
}

.screen-2 {
  position: absolute;
  top: 30%;
  right: -30px;
  width: 70%;
  transform: perspective(1000px) rotateY(10deg) rotateX(-5deg) translateZ(40px);
  animation: float-screen 6s infinite alternate-reverse ease-in-out;
}

.screen-shadow {
  position: absolute;
  bottom: -20px;
  left: 10%;
  right: 10%;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  filter: blur(15px);
  z-index: -1;
}

/* our Journey */

.aboutus {
  padding: 60px 0;
  background: var(--bg-light);
  position: relative;

  .aboutus-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;

    .a-shape {
      position: absolute;
      border-radius: 50%;
      opacity: 0.2;
    }

    .a-shape-1 {
      position: absolute;
      width: 80px;
      height: 80px;
      background: var(--primary-light);
      border-radius: 20px;
      rotate: 45deg;
      top: 10%;
      left: 5%;
    }

    .a-shape-2 {
      width: 300px;
      height: 300px;
      background: var(--primary-light);
      bottom: calc(50% - 150px);
      right: -150px;
    }

    .a-shape-3 {
      width: 240px;
      height: 240px;
      background: var(--secondary);
      bottom: -120px;
      left: -120px;
    }
  }

  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;

    .aboutus-content {
      max-width: 992px;
      display: flex;
      flex-direction: column;
      align-items: center;

      p {
        font-size: 1.5rem;
      }

      button {
        margin-top: 64px;
        padding: 18px 28px;
        background: var(--primary);
        color: white;
        font-weight: 600;
        border-radius: 36px;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
      }
    }
  }
}

.contact-section {
  background: var(--bg-light);
  position: relative;
  padding: 24px 0 80px;

  .container {
    .section-header {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      margin-bottom: 40px;

      h2 {
        font-size: 2.5rem;
        color: var(--primary);
      }

      p {
        color: var(--text-light);
        font-size: 1.25rem;
      }
    }

    .contact-action {
      button {
        background-color: var(--primary);
        padding: 16px 24px;
        border-radius: 36px;
        color: white;
        font-weight: 500;
        font-size: 1.1rem;
        border: none;
        cursor: pointer;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
      }
    }
  }
}

.add-property-button {
  text-decoration: none;
  background-color: var(--primary);
  padding: 12px 24px;
  border-radius: 36px;
  color: white;
  font-weight: 500;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.next-step-btn,
.property-submit-button {
  background-color: var(--primary);
  padding: 12px 24px;
  border-radius: 36px;
  color: white;
  font-weight: 500;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.prev-step-btn {
  background-color: transparent;
  padding: 10px 36px;
  border-radius: 36px;
  color: var(--primary);
  font-weight: 500;
  font-size: 1rem;
  border: 2px solid var(--primary);
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.button-group {
  margin-top: 48px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

/* Media Queries */
@media (width <= 1200px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-brand {
    grid-column: span 3;
  }
}

@media (width <= 992px) {
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (width <= 768px) {
  .hero-img-continer-dispaly {
    display: none;
  }

  .clients-bar {
    margin-top: 40px;
    padding: 30px;
  }

  .process-steps {
    flex-direction: column;
    align-items: center;
  }

  .step-connector {
    display: none;
  }
}

@media (width <= 576px) {
  .switch-track {
    width: 100%;
  }

  .switch-option {
    width: 50%;
    justify-content: center;
    padding: 12px 10px;
  }

  .slider-track {
    width: 100%;
  }

  .slider-button {
    width: 50%;
    justify-content: center;
    padding: 12px 10px;
  }

  .toggle-container {
    width: 100%;
  }

  .toggle-option {
    width: 50%;
    justify-content: center;
    min-width: auto;
    padding: 12px 10px;
  }

  .toggle-highlighter {
    width: 50%;
  }

  .testimonial-switcher {
    flex-direction: column;
  }
}

/* Demo Modal Styles */

.demo-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  padding: 20px;
}

.demo-modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 40px;
  border-radius: 16px;
  width: 100%;
  max-width: 800px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  animation: modalFadeIn 0.3s;
}

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

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

.demo-modal-close {
  color: #94a3b8;
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.demo-modal-close:hover,
.demo-modal-close:focus {
  color: #1e293b;
  text-decoration: none;
}

.demo-modal-content h2 {
  margin-top: 0;
  margin-bottom: 24px;
  color: #1e293b;
  font-size: 2rem;
}

.demo-form .form-section {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
}

.demo-form .form-section:last-of-type {
  border-bottom: none;
}

.demo-form h3 {
  font-size: 1.25rem;
  color: #2563eb;
  margin-bottom: 16px;
}

.demo-form .form-group {
  width: 100%;
  margin-bottom: 16px;
}

.demo-form .form-row {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 16px;
}

.demo-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: #475569;
}

.demo-form input[type='text'],
.demo-form input[type='url'],
.demo-form input[type='email'],
.demo-form input[type='number'],
.demo-form input[type='tel'],
.demo-form input[type='date'],
.demo-form select,
.demo-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: #1e293b;
  transition: border-color 0.3s;
  background: #f8fafc;
}

.demo-form input[type='file'] {
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: 1rem;
  color: #1e293b;
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background: #fff;
}

.demo-form .radio-group,
.demo-form .checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.demo-form .radio-group label,
.demo-form .checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  cursor: pointer;
  margin-bottom: 0;
}

.success-message {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  font-size: 64px;
  color: #10b981;
  margin-bottom: 20px;
}

.success-message h3 {
  font-size: 1.75rem;
  color: #1e293b;
  margin-bottom: 12px;
}

.success-message p {
  color: #64748b;
  font-size: 1.1rem;
}

.schedule-button {
  width: 100%;
  padding: 14px 36px;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  cursor: pointer;
}

@media (width <= 768px) {
  .demo-modal-content {
    padding: 30px 20px;
    margin: 15% auto;
  }

  .demo-form .radio-group,
  .demo-form .checkbox-group {
    grid-template-columns: 1fr;
  }
}

/* Multi-step Modal Styles */

.step-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
}

.step-indicator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #e2e8f0;
  z-index: 1;
}

.step-indicator .step {
  background: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #64748b;
  border: 2px solid #e2e8f0;
  z-index: 2;
  transition: all 0.3s;
}

.step-indicator .step.active {
  border-color: #2563eb;
  color: #2563eb;
  background: #eff6ff;
}

.step-indicator .step.completed {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
}

@media (width <= 600px) {
  .step-indicator .step {
    font-size: 0.75rem;
    padding: 6px 10px;
  }
}

/* --- SEO Locations Section --- */

.seo-locations {
  background: #f8fafc;
  padding: 60px 0;
  border-top: 1px solid #e2e8f0;
}

.seo-locations .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.seo-tabs {
  display: flex;
  border-bottom: 1px solid #cbd5e1;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.seo-tabs::-webkit-scrollbar {
  display: none;
}

.seo-tab {
  padding: 16px 24px;
  background: transparent;
  border: none;
  color: #64748b;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: color 0.3s ease;
  font-family: inherit;
}

.seo-tab:hover {
  color: var(--primary);
}

.seo-tab.active {
  color: var(--primary);
}

.seo-tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.seo-tab.active::after {
  transform: scaleX(1);
}

.seo-content-container {
  padding: 30px 0;
}

.seo-content {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 24px;
  animation: fadeIn 0.4s ease;
}

.seo-content.active {
  display: grid;
}

.seo-content a {
  color: #475569;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
  display: block;
  padding: 4px 0;
}

.seo-content a:hover {
  color: var(--primary);
}

@media (width <= 992px) {
  .seo-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (width <= 768px) {
  .seo-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .seo-tab {
    padding: 14px 16px;
    font-size: 0.9rem;
  }
}

@media (width <= 480px) {
  .seo-content {
    grid-template-columns: 1fr;
  }
}

/* Detailed Process Steps & CSS phone frames */

.detailed-process-section {
  position: relative;
  padding: 120px 0;
  background-color: #f8fafc;
  overflow-x: hidden;
}

.detailed-process-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f8fafc;
  background-image: url('../../assets/svg/booking-bg.svg');
  background-size: 260px 260px;
  background-repeat: repeat;
  z-index: 0;
  opacity: 0.8;
}

.detailed-process-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  background: transparent;
  z-index: 10;
}

.booking-step {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.booking-step.reverse {
  flex-direction: row-reverse;
}

.step-content {
  flex: 1;
  text-align: left;
}

.step-badge {
  display: inline-block;
  background: #e0e7ff;
  color: #4f46e5;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.step-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 24px;
}

.step-desc {
  font-size: 1.15rem;
  color: #64748b;
  line-height: 1.8;
}

.step-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-frame {
  width: 320px;
  height: 650px;
  background: #fff;
  border: 12px solid #1e293b;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 25px;
  background: #1e293b;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  z-index: 10;
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #f1f5f9;
}

.pulsing-pointer {
  position: absolute;
  width: 20px;
  height: 20px;
  background: rgba(37, 99, 235, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulseRing 2s infinite;
  z-index: 20;
}

.pulsing-pointer::after {
  content: '';
  width: 14px;
  height: 14px;
  background: #2563eb;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.scroll-down {
  position: absolute;
  width: 36px;
  height: 36px;
  background: rgba(37, 99, 235, 0.2);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scroll-animation 2s infinite;
  z-index: 20;
}

.scroll-down-1 {
  bottom: 66.5px;
  left: calc(50% - 18px);
  transform: translateX(-50%);
}

.pointer-badge {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: #1e293b;
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: bold;
  white-space: nowrap;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

.booking-hero {
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.booking-hero h1 span {
  color: var(--primary-dark);
}

.pointer-badge::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: #1e293b;
}

@keyframes scroll-animation {
  0% {
    transform: translateY(0);
  }

  80% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes pulseRing {
  0% {
    transform: scale(0.8);
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 15px rgba(37, 99, 235, 0);
  }

  100% {
    transform: scale(0.8);
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
  }
}

.pt-step1 {
  top: 66.5px;
  left: calc(20%);
  transform: translateX(-50%);
}

.pt-step1-1 {
  top: 244px;
  left: calc(50% - 10px);
  transform: translateX(-50%);
}

.pt-step2 {
  top: 337px;
  left: 25%;
}

.pt-step3 {
  bottom: 172.5px;
  left: calc(50% - 10px);
}

.pt-step3-1 {
  bottom: 107.5px;
  left: calc(50% - 10px);
}

.pt-step4 {
  top: 126px;
  left: calc(50% - 10px);
  transform: translateX(-50%);
}

.pt-step4-1 {
  bottom: 94px;
  left: calc(50% - 10px);
  transform: translateX(-50%);
}

.pt-step5 {
  bottom: 70px;
  right: 42px;
}

/* Owner Process specific CSS screens */

.phone-screen {
  width: 100%;
  height: 100%;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1e293b;
  position: relative;
  overflow: hidden;
}

.screen-header {
  background: #fff;
  padding: 36px 16px 14px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
  z-index: 5;
}

.screen-header i {
  color: #2563eb;
  font-size: 1.1rem;
}

.screen-body {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #f8fafc;
}

.screen-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
  text-align: left;
}

.screen-subtitle {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: -10px;
  margin-bottom: 2px;
  text-align: left;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: #e2e8f0;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 4px;
}

.progress-fill {
  height: 100%;
  background: #2563eb;
  border-radius: 3px;
  transition: width 0.3s ease;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #475569;
}

.form-group input,
.form-group select {
  padding: 10px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.85rem;
  background: #fff;
  color: #1e293b;
  outline: none;
  transition: border 0.2s ease;
}

.form-group input:focus {
  border-color: #2563eb;
}

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

.btn-primary-screen {
  background: #2563eb;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
  margin-top: 8px;
}

.screen-card {
  background: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.screen-card.highlighted {
  border-color: #93c5fd;
  background: #eff6ff;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-badge {
  font-size: 0.7rem;
  padding: 4px 8px;
  border-radius: 20px;
  font-weight: 700;
}

.card-badge.green {
  background: #d1fae5;
  color: #065f46;
}

.card-badge.orange {
  background: #ffedd5;
  color: #9a3412;
}

.card-badge.blue {
  background: #dbeafe;
  color: #1e40af;
}

.card-detail {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #64748b;
}

.card-detail span.bold {
  color: #1e293b;
  font-weight: 600;
}

.card-action-btn {
  background: #f1f5f9;
  color: #475569;
  border: none;
  padding: 8px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease;
}

.card-action-btn.primary {
  background: #2563eb;
  color: white;
}

.card-action-btn:hover {
  background: #e2e8f0;
}

.dashed-btn {
  border: 2px dashed #cbd5e1;
  background: transparent;
  color: #64748b;
  padding: 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
}

.amenity-item-screen {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
}

.amenity-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.amenity-info i {
  color: #2563eb;
  font-size: 1rem;
  width: 16px;
}

.switch-screen {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 22px;
}

.switch-screen input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider-screen {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cbd5e1;
  transition: 0.3s;
  border-radius: 22px;
}

.slider-screen::before {
  position: absolute;
  content: '';
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .slider-screen {
  background-color: #2563eb;
}

input:checked + .slider-screen::before {
  transform: translateX(16px);
}

.stats-grid-screen {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.stat-card-screen {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 8px;
  text-align: center;
}

.stat-val-screen {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
}

.stat-label-screen {
  font-size: 0.65rem;
  color: #64748b;
  margin-top: 2px;
}

.chart-container-screen {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chart-bars-screen {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 90px;
  padding: 0 10px;
  border-bottom: 1px solid #e2e8f0;
}

.alert-toast-screen {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fef2f2;
  border: 1px solid #fee2e2;
  border-radius: 8px;
  padding: 10px 12px;
  text-align: left;
}

.alert-toast-screen i {
  color: #ef4444;
}

.alert-text-screen {
  font-size: 0.75rem;
  color: #991b1b;
  font-weight: 600;
  flex: 1;
}

.alert-btn-screen {
  background: #ef4444;
  color: white;
  border: none;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
}

.pt-owner-step1 {
  bottom: 32px;
  left: calc(50% - 10px);
}

.pt-owner-step2 {
  top: 215px;
  right: 28px;
}

.pt-owner-step3 {
  top: 388px;
  left: calc(50% - 10px);
}

.pt-owner-step4 {
  top: 226px;
  right: 28px;
}

.pt-owner-step5 {
  bottom: 34px;
  right: 28px;
}

@media (width <= 992px) {
  .booking-step,
  .booking-step.reverse {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 60px 0;
  }
}

@media (width >= 992px) {
  .booking-hero p {
    width: 65%;
  }
}

.badge-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

/* Floating Overlay Search Card */

.search-card {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 390px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.5);
  z-index: 10;
  transition: var(--transition);
}

.search-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.search-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #00254f;
  margin-bottom: 16px;
}

.search-input-group {
  position: relative;
  margin-bottom: 12px;
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 0.95rem;
}

.search-input-group input {
  width: 100%;
  padding: 12px 14px 12px 38px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  font-size: 0.9rem;
  color: var(--text);
  font-family: inherit;
  transition: var(--transition);
}

.search-input-group input:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.15);
}

.search-filters-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.filter-select-wrapper {
  position: relative;
}

.filter-select {
  width: 100%;
  padding: 10px 20px 10px 8px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  font-size: 0.75rem;
  font-weight: 500;
  color: #475569;
  font-family: inherit;
  appearance: none;
  cursor: pointer;
  transition: var(--transition);
}

.filter-select:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
}

.select-chevron {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  font-size: 0.7rem;
  pointer-events: none;
}

.search-btn {
  width: 100%;
  padding: 12px;
  background: #e21b5a;
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  box-shadow: 0 4px 12px rgba(226, 27, 90, 0.2);
}

.search-btn:hover {
  background: #c2154b;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(226, 27, 90, 0.3);
}

/* Trusted Badge Style */

.trusted-badge-container {
  position: absolute;
  bottom: 20px;
  right: 60px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.4);
  z-index: 11;
  transition: var(--transition);
}

.trusted-badge-container:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.95);
}

.avatar-group {
  display: flex;
  align-items: center;
}

.avatar-img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px;
  object-fit: cover;
}

.avatar-group .avatar-img:first-child {
  margin-left: 0;
}

.trusted-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: #475569;
}

/* Responsive adjustments for Hero Section */
@media (width <= 992px) {
  .hero-section {
    padding: 100px 0 40px;
    min-height: auto;
    background: #fafcff !important; /* Remove background svg on tablet/mobile for readability */
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-img-continer-dispaly {
    display: none;
  }

  .hero-left {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .hero-title {
    font-size: 2.6rem;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 24px;
  }

  .hero-badges-container {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-right {
    align-items: center;
    width: 100%;
    padding: 0 16px;
  }

  .search-card {
    max-width: 100%;
    width: 100%;
  }

  .trusted-badge-container {
    align-self: center;
    margin-top: 16px;
  }
}

@media (width <= 480px) {
  .search-filters-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
