:root {
  --brand-blue: #2f6bff;
  --brand-blue-dark: #1f4ed8;
  --brand-blue-soft: #e6f0ff;
  --accent-teal: #eaf1ff;
  --text-dark: #1f2b45;
  --card-radius: 16px;
  --card-radius-sm: 12px;
  --card-shadow: 0 16px 30px rgba(31, 59, 120, 0.12);
  --surface: #ffffff;
  --surface-alt: #f4f7ff;
  --section-pad: 72px;
  --header-offset: 86px;
}

/* Buttons: unified look across public pages */
#main .btn,
#main .btn-get-started,
#main .btn-primary,
#main .btn-secondary,
#main .btn-outline-secondary {
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

#main .btn-primary,
#main .btn-secondary,
#main .btn-get-started {
  background: var(--brand-blue);
  color: #ffffff;
  border: none;
  box-shadow: 0 10px 18px rgba(47, 107, 255, 0.25);
}

#main .btn-primary:hover,
#main .btn-secondary:hover,
#main .btn-get-started:hover {
  background: var(--brand-blue-dark);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(31, 78, 216, 0.28);
}

#main .btn-outline-secondary {
  background: transparent;
  color: var(--brand-blue);
  border: 1px solid rgba(47, 107, 255, 0.45);
}

#main .btn-outline-secondary:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(47, 107, 255, 0.6);
  color: var(--brand-blue);
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  letter-spacing: -0.2px;
}

section {
  padding: var(--section-pad) 0;
}

section + section {
  margin-top: clamp(32px, 4vw, 64px);
}

.home-page #hero {
  padding: 0;
}

.section-bg {
  background-color: var(--surface-alt);
}

.contact-directory-section {
  background: var(--brand-blue);
  color: #ffffff;
}

.contact-directory-flat .footer-directory {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.contact-directory-flat .footer-directory-tabs {
  margin-bottom: 14px;
}

.contact-directory-flat .footer-card {
  border: none;
  background: transparent;
  border-radius: 0;
}

.contact-directory-flat .footer-card-title {
  background: transparent;
  text-align: left;
  padding: 0 0 6px;
  font-size: 12px;
  letter-spacing: 0.4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-directory-flat .footer-card[open] .footer-card-title {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.contact-directory-flat .footer-card-grid {
  padding: 10px 0 6px;
  gap: 12px;
}

.contact-directory-flat .footer-cards {
  gap: 18px 26px;
}

.section-title {
  padding-bottom: 20px;
}

.section-title h3 {
  font-size: 30px;
}

@media (max-width: 992px) {
  :root {
    --section-pad: 60px;
    --header-offset: 60px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 52px;
    --header-offset: 56px;
  }

  .section-title h3 {
    font-size: 26px;
  }
}

#topbar {
  background: linear-gradient(90deg, #2f6bff 0%, #2b5bdd 50%, #244cc4 100%);
  color: #f1f6ff;
  font-size: 12px;
  height: 26px;
}

#topbar.topbar-scrolled {
  top: -26px;
}

#topbar .contact-info,
#topbar .social-links a {
  line-height: 26px;
}
#header {
  background: #ffffff;
  box-shadow: none;
  top: 26px;
}

#header > .d-flex {
  align-items: center;
  width: 100%;
  min-height: 60px;
}

#header .header-logo {
  flex: 0 0 auto;
  padding: 6px 12px 6px 14px;
  background: #ffffff;
  height: 60px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  overflow: visible;
  min-width: 72px;
}

#header .header-logo img {
  height: 52px;
  width: auto;
  padding-left: 2px;
  display: block;
}

#header .header-title {
  display: flex;
  align-items: center;
  background: #ffffff;
  height: 60px;
  padding: 0 10px 0 0;
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  width: clamp(140px, 10vw, 190px);
  min-width: 140px;
}

#header .header-title .logo {
  display: none;
}

#header .header-title .logo a {
  color: #111111;
  font-size: 16px;
  font-weight: 500;
}

#header .header-title::after {
  content: "";
  position: absolute;
  top: 0;
  right: -18px;
  width: 36px;
  height: 100%;
  background: #ffffff;
  transform: skewX(30deg);
  transform-origin: left;
}

#header .div-redinet {
  display: none;
}

#header .header-menu {
  flex: 1 1 auto;
  background: var(--brand-blue) !important;
  padding: 0 18px 0 36px;
  height: 60px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

#header .nav-menu > ul {
  width: 100%;
  justify-content: flex-start;
  align-items: center;
}

#header .nav-menu > ul > li {
  padding: 0 12px;
}

#header .nav-menu .login_li {
  margin-left: auto;
}

#header .nav-menu a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  padding: 6px 10px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

#header .nav-menu a:hover,
#header .nav-menu li:hover > a {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

#header .nav-menu .active > a {
  color: var(--accent-teal);
  background: rgba(234, 241, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(234, 241, 255, 0.45);
}

#header .nav-menu > ul > li > a:before {
  display: none;
}

.home-page #hero {
  min-height: 560px;
  text-align: center;
  color: #ffffff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: none;
  background-color: #1e4aa6;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.home-page #hero:before {
  background: linear-gradient(
    120deg,
    rgba(8, 44, 110, 0.62) 0%,
    rgba(19, 79, 162, 0.45) 48%,
    rgba(255, 255, 255, 0.25) 100%
  );
  z-index: 1;
}

.home-page #hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.35));
  opacity: 0.45;
  pointer-events: none;
  z-index: 2;
}

.home-page #hero .container,
.home-page #hero h1,
.home-page #hero h2,
.home-page #hero p {
  position: relative;
  z-index: 3;
}

.home-page #hero .hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-page #hero .hero-slide {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 1.6s ease-in-out, transform 6s ease-in-out;
    will-change: opacity, transform;
  }

.home-page #hero .hero-slide.is-active {
    opacity: 1;
    transform: scale(1.06);
  }

body:not(.hero-js-ready) .home-page #hero[data-force-autoslide="true"] .hero-slide {
  animation: heroFade 48s infinite, heroKenBurns 6s ease-in-out infinite;
}

body:not(.hero-js-ready) .home-page #hero[data-force-autoslide="true"] .hero-slide:nth-child(1) {
  animation-delay: 0s;
}

body:not(.hero-js-ready) .home-page #hero[data-force-autoslide="true"] .hero-slide:nth-child(2) {
  animation-delay: 6s;
}

body:not(.hero-js-ready) .home-page #hero[data-force-autoslide="true"] .hero-slide:nth-child(3) {
  animation-delay: 12s;
}

body:not(.hero-js-ready) .home-page #hero[data-force-autoslide="true"] .hero-slide:nth-child(4) {
  animation-delay: 18s;
}

body:not(.hero-js-ready) .home-page #hero[data-force-autoslide="true"] .hero-slide:nth-child(5) {
  animation-delay: 24s;
}

body:not(.hero-js-ready) .home-page #hero[data-force-autoslide="true"] .hero-slide:nth-child(6) {
  animation-delay: 30s;
}

body:not(.hero-js-ready) .home-page #hero[data-force-autoslide="true"] .hero-slide:nth-child(7) {
  animation-delay: 36s;
}

body:not(.hero-js-ready) .home-page #hero[data-force-autoslide="true"] .hero-slide:nth-child(8) {
  animation-delay: 42s;
}

body:not(.hero-js-ready) .home-page #hero[data-force-autoslide="true"] .hero-slide.is-active {
  animation: none;
  opacity: 1;
}

@keyframes heroFade {
  0% {
    opacity: 0;
  }
  4% {
    opacity: 1;
  }
  12% {
    opacity: 1;
  }
  16% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes heroKenBurns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.06);
  }
}

.home-page #hero .container {
  padding-top: 150px;
  padding-bottom: 90px;
  max-width: 960px;
  position: relative;
  z-index: 2;
}

.home-page .welcome-to-prop-container {
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1.1;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  white-space: nowrap !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.home-page .welcome-to-prop-container span {
  display: inline;
}

.home-page .prop-market {
  font-size: inherit;
  font-weight: 700;
  margin-left: 0;
  white-space: nowrap;
}

.home-page .find-yours-browse {
  margin: 14px auto 22px;
  max-width: 720px;
  font-size: clamp(16px, 1.9vw, 24px);
  line-height: 1.6;
  letter-spacing: 0.2px;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
  word-break: normal;
  overflow-wrap: normal;
  
}

.home-page .hero-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
}

.home-page .hero-dots span {
  width: 26px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  transition: width 0.3s ease, background 0.3s ease, opacity 0.3s ease;
}

.home-page .hero-dots span.active {
  width: 44px;
  height: 4px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.home-intro {
  background: var(--surface-alt);
  padding: var(--section-pad) 0;
}

.home-intro .section-title {
  margin-bottom: 0;
}

.home-intro .section-title p {
  margin: 0 auto;
  max-width: 900px;
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
}

.home-features {
  padding: var(--section-pad) 0;
  background: var(--surface);
}

.home-features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.home-feature-card {
  position: relative;
  min-height: 220px;
  border-radius: var(--card-radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #ffffff;
  background-size: cover;
  background-position: center;
  box-shadow: var(--card-shadow);
}

.home-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
}

.home-feature-content {
  position: relative;
  z-index: 1;
  padding: 22px 24px 24px;
}

.home-feature-content h3 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 700;
}

.home-feature-subtitle {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.9;
}

.home-feature-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.9;
}

.home-highlight {
  background: var(--surface-alt);
  text-align: center;
  padding: var(--section-pad) 0;
}

.home-highlight h3 {
  margin: 0 0 10px;
  color: var(--text-dark);
  font-size: 20px;
  font-weight: 700;
}

.home-highlight p {
  margin: 0 auto;
  max-width: 760px;
  color: #4b5870;
  font-size: 14px;
  line-height: 1.7;
}

.home-contact {
  background: var(--surface-alt);
  padding: var(--section-pad) 0;
}

.home-contact .home-contact-media {
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.home-contact .home-contact-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.home-contact .home-contact-content {
  margin-top: 18px;
  padding-right: 12px;
}

.home-contact .home-contact-content h3 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
}

.home-contact .home-contact-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #4b5870;
}

.home-contact .home-contact-card {
  background: #ffffff;
  border-radius: var(--card-radius);
  padding: 24px;
  border: 1px solid #dce7ff;
  box-shadow: var(--card-shadow);
}

.home-contact .home-contact-card .section-title {
  padding-bottom: 10px;
}

.home-contact .home-contact-card .plan-title {
  color: var(--brand-blue);
  font-weight: 700;
}

.home-contact .home-contact-card h4 {
  color: #1f2b45;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.home-contact .home-contact-card .form-group {
  margin-bottom: 12px;
}

.home-contact .home-contact-card label {
  color: #3c4b6e;
  font-size: 12px;
  margin-bottom: 6px;
  font-weight: 600;
}

.home-contact .home-contact-card .form-control {
  background: #f6f8ff;
  border: 1px solid #d8e3ff;
  border-radius: 8px;
  height: 38px;
  font-size: 13px;
}

.home-contact .home-contact-card textarea.form-control {
  min-height: 120px;
  height: auto;
}

.home-contact .home-contact-card .btn {
  background: #1f5fe1;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 13px;
}

.home-contact .home-contact-card .btn:hover {
  background: #174cb8;
}

.about-contact {
  background: var(--surface-alt);
  padding: var(--section-pad) 0;
}

.about-contact .about-contact-media {
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.about-contact .about-contact-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.about-contact .about-contact-content {
  margin-top: 18px;
  padding-right: 12px;
}

.about-contact .about-contact-content h3 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
}

.about-contact .about-contact-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #4b5870;
}

.about-contact .about-contact-card {
  background: #ffffff;
  border-radius: var(--card-radius);
  padding: 24px;
  border: 1px solid #dce7ff;
  box-shadow: var(--card-shadow);
}

.about-contact .about-contact-card .section-title {
  padding-bottom: 10px;
}

.about-contact .about-contact-card .plan-title {
  color: var(--brand-blue);
  font-weight: 700;
}

.about-contact .about-contact-card h4 {
  color: #1f2b45;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.about-contact .about-contact-card .form-group {
  margin-bottom: 12px;
}

.about-contact .about-contact-card label {
  color: #3c4b6e;
  font-size: 12px;
  margin-bottom: 6px;
  font-weight: 600;
}

.about-contact .about-contact-card .form-control {
  background: #f6f8ff;
  border: 1px solid #d8e3ff;
  border-radius: 8px;
  height: 38px;
  font-size: 13px;
}

.about-contact .about-contact-card textarea.form-control {
  min-height: 120px;
  height: auto;
}

.about-contact .about-contact-card .btn {
  background: #1f5fe1;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 13px;
}

.about-contact .about-contact-card .btn:hover {
  background: #174cb8;
}

.legal-page {
  padding: calc(var(--section-pad) + var(--header-offset)) 0 var(--section-pad);
}

.legal-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 24px;
  padding: 28px 30px;
  border-radius: var(--card-radius);
  background: linear-gradient(135deg, #1f4ed8 0%, #2f6bff 45%, #1b49c4 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  margin-bottom: 26px;
  min-height: 260px;
  align-items: center;
}

.legal-hero.legal-hero-single {
  grid-template-columns: minmax(0, 1fr);
  min-height: 200px;
}

.legal-hero.legal-hero-single .legal-hero-copy {
  max-width: 760px;
}

.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(620px circle at 12% 12%, rgba(255, 255, 255, 0.2), transparent 60%);
}

.legal-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.08) 2px,
    transparent 2px,
    transparent 10px
  );
  opacity: 0.25;
}

.legal-hero-copy,
.legal-hero-card {
  position: relative;
  z-index: 1;
}

.legal-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.2px;
}

.legal-hero h1 {
  margin: 12px 0 8px;
  font-size: clamp(26px, 3vw, 36px);
  color: #ffffff;
  font-weight: 700;
}

.legal-lead {
  margin: 0;
  max-width: 540px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.legal-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.legal-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
}

.legal-meta-item span {
  opacity: 0.85;
}

.legal-meta-item strong {
  font-weight: 600;
}

.legal-hero-card {
  background: #ffffff;
  color: #1f2b45;
  border-radius: var(--card-radius);
  padding: 18px 20px;
  box-shadow: 0 12px 22px rgba(31, 59, 120, 0.18);
}

.legal-hero-card h4 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: #1f2b45;
}

.legal-hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-hero-card li {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 1.5;
  color: #4b5870;
}

.legal-hero-card li i {
  margin-top: 2px;
  color: var(--brand-blue);
  font-size: 16px;
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 20px;
  align-items: start;
}

.legal-grid.legal-grid-single {
  grid-template-columns: minmax(0, 1fr);
}

.legal-page .legal-card {
  background: #ffffff;
  border-radius: var(--card-radius);
  padding: 26px 28px;
  border: 1px solid #dce7ff;
  border-top: 4px solid #2f6bff;
  box-shadow: var(--card-shadow);
  color: #4b5870;
}

.legal-page .legal-main {
  max-width: 980px;
  margin: 0 auto;
}

.legal-page .legal-card h4 {
  margin: 18px 0 8px;
  color: var(--text-dark);
  font-size: 17px;
  font-weight: 700;
}

.legal-page .legal-card h5 {
  margin: 12px 0 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #1f2b45;
}

.legal-page .legal-card h4:first-of-type {
  margin-top: 0;
}

.legal-page .legal-card p {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.65;
}

.legal-page .legal-card p.legal-intro {
  font-size: 15px;
  color: #34415c;
}

.legal-page .legal-card p.legal-warning {
  background: #f0f5ff;
  border-left: 4px solid #2f6bff;
  padding: 10px 12px;
  border-radius: 8px;
  color: #1f2b45;
}

.legal-page .legal-card ul {
  padding-left: 18px;
  margin-bottom: 14px;
}

.legal-page .legal-card li {
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.6;
}

.legal-divider {
  height: 1px;
  background: #e5edff;
  margin: 16px 0;
}

.legal-side {
  display: grid;
  gap: 16px;
}

.legal-side-card {
  background: #ffffff;
  border-radius: var(--card-radius-sm);
  padding: 18px 20px;
  border: 1px solid #dce7ff;
  box-shadow: 0 12px 22px rgba(31, 59, 120, 0.12);
  color: #4b5870;
}

.legal-side-card h4 {
  margin: 0 0 10px;
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.legal-side-card h4 i {
  color: var(--brand-blue);
  font-size: 18px;
}

.legal-side-card p {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.6;
}

.legal-side-card .btn {
  font-size: 12px;
  padding: 8px 12px;
}

.legal-side-muted {
  background: #f4f7ff;
  border: 1px dashed #cfd9f5;
  box-shadow: none;
}

@media (max-width: 992px) {
  .legal-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .legal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .legal-hero {
    padding: 22px;
    min-height: auto;
  }

  .legal-hero-card {
    padding: 16px;
  }

  .legal-page .legal-card {
    padding: 22px;
  }
}

.php-email-form .validate {
  display: none;
  color: #d93025;
  margin: 6px 0 0;
  font-size: 12px;
  font-weight: 600;
}

.php-email-form .error-message {
  display: none;
  background: #ed3c0d;
  color: #ffffff;
  text-align: left;
  padding: 12px 14px;
  font-weight: 600;
  border-radius: 8px;
}

.php-email-form .sent-message {
  display: none;
  background: #18d26e;
  color: #ffffff;
  text-align: left;
  padding: 12px 14px;
  font-weight: 600;
  border-radius: 8px;
}

.php-email-form .loading {
  display: none;
  background: #ffffff;
  color: #1f2b45;
  text-align: left;
  padding: 12px 14px;
  border-radius: 8px;
}

@media (max-width: 992px) {
  .about-contact .about-contact-media img {
    height: 280px;
  }

  .about-contact .about-contact-card {
    margin-top: 24px;
  }

  .about-contact .about-contact-content {
    padding-right: 0;
  }
}

#footer .footer-top {
  background: linear-gradient(180deg, #2f6bff 0%, #2359d6 100%);
  color: #ffffff;
  padding: 14px 0 12px;
  position: relative;
  overflow: hidden;
}

#footer .footer-top::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.12), transparent 45%);
  opacity: 0.7;
  pointer-events: none;
}

#footer .footer-top .row {
  align-items: center;
  position: relative;
  z-index: 1;
}

#footer .footer-top .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

#footer .footer-top .footer-contact .footer-logo {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  background: #ffffff;
  padding: 4px;
}

#footer .footer-top a {
  color: #e8efff;
}

#footer .footer-top a:hover {
  color: #ffffff;
}

#footer {
  box-shadow: 0 -18px 36px rgba(20, 56, 135, 0.45);
}

#footer .footer-top,
#footer .footer-bottom {
  color: rgba(255, 255, 255, 0.92);
}

#footer .footer-top .footer-contact p,
#footer .footer-top .footer-contact h3 {
  color: rgba(255, 255, 255, 0.88);
}

#footer .footer-top .footer-contact h3,
#footer .footer-top .footer-contact p {
  color: #ffffff;
  text-align: left;
}

#footer .footer-top .footer-contact h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 2px 0;
}

#footer .footer-top .footer-contact h3:first-of-type {
  margin: 0 0 4px;
}

#footer .footer-top .footer-contact p {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 6px;
}

#footer .footer-top .social-links {
  text-align: left;
  margin-top: 6px;
}

#footer .footer-top .social-links a {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

#footer .footer-top .social-links a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.28);
}

#footer .footer-contact-inline {
  margin-top: 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(6px);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
}

#footer .footer-contact-inline h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: #ffffff;
}

#footer .footer-contact-inline ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

#footer .footer-contact-inline li {
  line-height: 1.4;
}

#footer .footer-contact-inline a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

#footer .footer-contact-inline a:hover {
  color: #ffffff;
  text-decoration: underline;
}

#footer .footer-contact-inline i {
  font-size: 14px;
  color: #ffffff;
  margin-top: 2px;
}

@media (min-width: 992px) {
  #footer .footer-contact-col {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    padding-left: 18px;
  }

  #footer .footer-contact-inline {
    width: 100%;
    max-width: 420px;
  }
}

@media (min-width: 992px) {
  #footer .footer-contact-inline ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 14px;
  }
}

.footer-directory {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--card-radius);
  padding: 14px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.footer-directory-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.footer-directory-tabs button {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #e8efff;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.2px;
}

.footer-directory-tabs button.is-active {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--brand-blue);
  box-shadow: 0 4px 8px rgba(47, 107, 255, 0.2);
}

.footer-directory-panel {
  display: block;
}

.footer-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.footer-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--card-radius-sm);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.footer-card summary {
  list-style: none;
  cursor: pointer;
}

.footer-card summary::-webkit-details-marker {
  display: none;
}

.footer-card-title {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 8px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.footer-card[open] .footer-card-title {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 10px 12px;
  font-size: 12px;
  color: #e8efff;
  line-height: 1.5;
}

.footer-card-grid span {
  display: block;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}

.footer-card-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-card-grid li {
  margin-bottom: 3px;
  overflow-wrap: anywhere;
}

.footer-card-grid a {
  color: inherit;
  text-decoration: none;
}

.footer-card-grid a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-directory-contact {
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--card-radius-sm);
  padding: 10px 12px;
  font-size: 12px;
  color: #e8efff;
  background: rgba(255, 255, 255, 0.08);
}

.footer-directory-contact h4 {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.footer-contact-items {
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer-contact-item {
  display: block;
}

.footer-contact-item a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: inherit;
  text-decoration: none;
}

.footer-contact-item a:hover {
  color: #ffffff;
}

.footer-contact-item i {
  font-size: 14px;
  color: #ffffff;
  margin-top: 2px;
}

.footer-contact-item span {
  display: block;
}

@media (max-width: 1200px) {
  .footer-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .footer-cards {
    grid-template-columns: 1fr;
  }

  .footer-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  #footer .footer-top {
    padding: 24px 0 18px;
  }

  #footer .footer-top .footer-contact h3,
  #footer .footer-top .footer-contact p {
    text-align: center;
  }

  #footer .footer-top .social-links {
    text-align: center;
  }

  .footer-directory {
    padding: 12px;
  }

  .footer-directory-tabs {
    gap: 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin;
  }

  .footer-directory-tabs button {
    font-size: 11px;
    white-space: nowrap;
  }

  .footer-card-grid {
    gap: 10px;
    font-size: 12px;
  }

  .footer-card-grid li {
    margin-bottom: 6px;
  }

  .footer-directory-contact {
    font-size: 12px;
  }
}

#footer .footer-bottom {
  background: linear-gradient(90deg, #2f6bff 0%, #2b5bdd 50%, #244cc4 100%);
  color: #eaf1ff;
  padding: 6px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

#footer .footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 0;
  padding-bottom: 0;
}

#footer .footer-bottom .copyright,
#footer .footer-bottom .credits {
  font-size: 12px;
}

@media (max-width: 768px) {
  #footer .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }
}

#footer .footer-bottom a {
  color: #f1f6ff;
}

#footer .footer-bottom a:hover {
  color: #ffffff;
}

@media (max-width: 992px) {
  #header {
    top: 0;
  }

  #header .header-menu {
    padding: 0 16px;
  }

  #header .header-logo {
    min-width: 0;
  }

  #header .header-title {
    display: none;
  }

  #header .header-title::after {
    display: none;
  }

  #header .div-redinet {
    display: none;
  }

  #header .header-menu {
    background: transparent !important;
  }

  .home-page #hero {
    min-height: 500px;
  }

  .home-page #hero .container {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .home-features-grid {
    grid-template-columns: 1fr;
  }

  .home-contact .home-contact-media img {
    height: 280px;
  }

  .home-contact .home-contact-card {
    margin-top: 24px;
  }

  .home-contact .home-contact-content {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  #topbar {
    font-size: 12px;
  }

  #header .header-logo {
    padding: 8px 12px;
  }

  .home-page .welcome-to-prop-container {
    font-size: 24px;
    white-space: normal;
    display: block;
  }

  .home-page .prop-market {
    font-size: inherit;
    margin-left: 0;
  }

  .home-page .find-yours-browse {
    font-size: 16px;
  }

  .home-page .hero-dots span {
    width: 18px;
    height: 3px;
  }

  .home-page .hero-dots span.active {
    width: 32px;
    height: 3px;
  }

  .home-feature-card {
    min-height: 200px;
  }

  .home-highlight {
    padding: var(--section-pad) 0;
  }
}

.contact-page {
  background: var(--surface-alt);
  padding: var(--section-pad) 0;
}

.contact-page .contact-details {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1b56de 0%, #2f6bff 50%, #1a46c9 100%);
  border-radius: var(--card-radius);
  padding: 32px 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--card-shadow);
  color: #ffffff;
}

.contact-page .contact-details::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(620px circle at 18% 12%, rgba(255, 255, 255, 0.18), transparent 60%);
  pointer-events: none;
}

.contact-page .contact-details > * {
  position: relative;
}

.contact-page .contact-details .title h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-page .contact-details .title p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  max-width: 380px;
  /* text-wrap: balance; */
  width: auto;
}

.contact-page .contact-details .icon-box-circle {
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.contact-page .contact-details .icon-cercle {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  float: none;
}

.contact-page .contact-details .icon-cercle i {
  position: static;
  font-size: 20px;
  color: #ffffff;
}

.contact-page .contact-details .icon-description {
  float: none;
  padding: 0;
  color: #ffffff;
}

.contact-page .contact-details .icon-description span {
  font-size: 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.contact-page .contact-details .icon-description .description {
  margin: 4px 0 0 0;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.contact-page .contact-details .icon-description a {
  color: #ffffff;
}

.contact-page .contact-details .social-links p {
  margin: 8px 0 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-page .contact-details .social-links a {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  border-radius: 10px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.contact-page .contact-details .social-links a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 10px 20px rgba(15, 35, 85, 0.3);
}

.contact-page .content h3 {
  color: #1f2b45;
  font-size: 26px;
  font-weight: 700;
}

.contact-page .content p {
  color: #4b5870;
  font-size: 15px;
  line-height: 1.7;
  text-align: left;
}

.contact-page .contact {
  background: #f6f8ff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 14px 28px rgba(31, 43, 69, 0.08);
  border: 1px solid #d9e2f4;
}

.contact-page .contact label {
  font-size: 12px;
  font-weight: 600;
  color: #2a3552;
}

.contact-page .contact .form-control {
  border-radius: 8px;
  border: 1px solid #d2dbee;
  background: #eef3ff;
  font-size: 13px;
}

.contact-page .contact button {
  background: #2b63e6;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 600;
}

.contact-map {
  padding: 40px 0 60px;
  background: #eef3ff;
}

.contact-map .map-frame {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #d9e2f4;
  box-shadow: 0 16px 30px rgba(31, 43, 69, 0.12);
}

@media (max-width: 992px) {
  .contact-page {
    padding: 40px 0 60px;
  }

  .contact-page .contact-details {
    margin-bottom: 24px;
  }
}

@media (max-width: 768px) {
  .contact-page .contact-details {
    padding: 24px;
  }

  .contact-page .contact {
    padding: 22px;
  }
}

.plan-page #plan-page {
  background: #f5f8ff;
}

.plan-page #plan-page .overlay {
  background: rgba(47, 107, 255, 0.4);
}

.plan-page #plan-headline {
  background: #eef3ff;
  text-align: center;
  padding: 40px 0 30px;
}

.plan-page #plan-headline h4 {
  font-size: 24px;
  font-weight: 700;
  color: #1f2b45;
  margin-bottom: 10px;
}

.plan-page #plan-headline p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.7;
  color: #4b5870;
}

.plan-page .icon-and-title h2 {
  color: #1f2b45;
  font-weight: 700;
}

.plan-page .currency-toggle {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: #f2f5ff;
  border: 1px solid #e0e6f7;
}

.plan-page .currency-toggle .btn-outline-secondary {
  border: none;
  color: #4b5870;
  font-weight: 600;
  border-radius: 999px;
  padding: 6px 14px;
  background: transparent;
}

.plan-page .currency-toggle .btn-outline-secondary.is-active {
  background: var(--brand-blue);
  color: #ffffff;
  box-shadow: 0 6px 12px rgba(47, 107, 255, 0.25);
}

.plan-page .pricing-grid > [class*="col-"] {
  margin-bottom: 24px;
  display: flex;
  padding-left: 12px !important;
  padding-right: 12px !important;
}

.plan-page .pricing-card {
  border: 1px solid #e5e9f6;
  border-radius: var(--card-radius);
  padding: 26px 24px;
  margin: 0;
  text-align: left;
  position: relative;
  height: auto;
  background: #ffffff;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-page .pricing-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1f2b45;
  margin-bottom: 6px;
}

.plan-page .pricing-card .price {
  font-size: 28px;
  color: var(--brand-blue);
  margin-bottom: 8px;
  font-weight: 700;
}

.plan-page .pricing-card p {
  font-size: 13px;
  color: #5b677d;
  margin-bottom: 12px;
}

.plan-page .pricing-card ul {
  padding: 0;
  margin: 0 0 12px 0;
  list-style: none;
}

.plan-page .pricing-card ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
  white-space: normal;
  font-size: 13px;
  color: #4b5870;
}

.plan-page .pricing-card .custom-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--brand-blue);
}

.plan-page .pricing-card .btn-get-started {
  position: static;
  transform: none;
  margin-top: auto;
  width: 100%;
  text-align: center;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--brand-blue);
}

.plan-page .pricing-card.is-featured {
  border-color: rgba(47, 107, 255, 0.5);
  box-shadow: 0 16px 32px rgba(47, 107, 255, 0.18);
  background: linear-gradient(180deg, rgba(47, 107, 255, 0.06), #ffffff 35%);
}

.plan-page .pricing-card.is-featured .btn-get-started {
  background: #1f5fe1;
}

.plan-page #term-condition {
  background: #2f6bff;
  padding: 32px 0 36px;
}

.plan-page #term-condition .term {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  width: 100%;
  box-shadow: none;
}

.plan-page #term-condition .section-title {
  padding-bottom: 10px;
}

.plan-page #term-condition .term .section-title .title {
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 6px;
}

.plan-page #term-condition .term ul {
  margin: 10px 0 0 0;
  padding: 0;
  list-style: none;
  color: #eef3ff;
}

.plan-page #term-condition .term ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 6px 0;
  font-size: 15px;
  line-height: 1.6;
  color: #eef3ff;
}

.plan-page #term-condition .term ul li i {
  font-size: 18px;
  color: #ffffff;
  margin-top: 2px;
}

.plan-page #term-condition .condition {
  background: #ffffff;
  border: 1px solid #e5e9f6;
  border-radius: 0;
  padding: 22px 20px;
  margin-top: 16px;
  box-shadow: 0 12px 24px rgba(31, 43, 69, 0.06);
}

.plan-page #term-condition .condition h4 {
  color: #1f2b45;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.plan-page #term-condition .condition p {
  font-size: 14px;
  line-height: 1.8;
  color: #5b677d;
  margin-bottom: 12px;
}

.plan-page #term-condition .condition p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .plan-page #plan-headline {
    padding: 30px 0 20px;
  }

  .plan-page .pricing-grid > [class*="col-"] {
    margin-bottom: 18px;
  }
}

@media (max-width: 768px) {
  .plan-page .currency-toggle {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.sales-chat-widget {
  position: fixed;
  right: 20px;
  bottom: 12px;
  z-index: 1050;
  font-family: "Poppins", "Open Sans", sans-serif;
}

.sales-chat-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #2f6bff;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  box-shadow: 0 14px 30px rgba(24, 55, 120, 0.25);
  cursor: pointer;
}

.sales-chat-toggle-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.sales-chat-toggle-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.sales-chat-panel {
  position: absolute;
  right: 0;
  bottom: 56px;
  width: 340px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 24px 40px rgba(24, 47, 99, 0.25);
  overflow: hidden;
  max-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.sales-chat-panel.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sales-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #2f6bff 0%, #2359d6 100%);
  color: #ffffff;
  padding: 12px 16px;
}

.sales-chat-title {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sales-chat-title strong {
  font-size: 14px;
  font-weight: 600;
}

.sales-chat-title span {
  font-size: 11px;
  opacity: 0.8;
}

.sales-chat-actions {
  display: inline-flex;
  gap: 6px;
}

.sales-chat-actions button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.sales-chat-body {
  background: #f6f8ff;
  padding: 14px 16px 16px;
  overflow-y: auto;
  max-height: 340px;
  scrollbar-width: none;
}
.sales-chat-body::-webkit-scrollbar {
  width: 0;
  background: transparent;
}

.sales-chat-intro p {
  font-size: 11px;
  line-height: 1.45;
  color: #3b4a6b;
  margin-bottom: 12px;
}

.sales-chat-form {
  display: grid;
  gap: 4px;
}

.sales-chat-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #2c3a5d;
  margin-bottom: 3px;
}

.sales-chat-field input,
.sales-chat-field select,
.sales-chat-field textarea {
  width: 100%;
  border: 1px solid #d6e2ff;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 13px;
  background: #ffffff;
  color: #1f2b45;
}

.sales-chat-field textarea {
  min-height: 84px;
  resize: vertical;
}

.sales-chat-field.is-hidden {
  display: none;
}

.sales-chat-field input[readonly] {
  background: #eef2ff;
  color: #4a5873;
}

.sales-chat-field input.is-invalid,
.sales-chat-field select.is-invalid {
  border-color: #ff5b5b;
  box-shadow: 0 0 0 2px rgba(255, 91, 91, 0.15);
}

.sales-chat-error {
  display: block;
  min-height: 8px;
  margin-top: 2px;
  font-size: 11px;
  color: #d9342b;
}

.sales-chat-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 11px;
  line-height: 1.4;
  color: #4b5870;
}

.sales-chat-consent input {
  margin-top: 2px;
}

.sales-chat-cta {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.sales-chat-btn {
  flex: 1;
  border: none;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  background: #2f6bff;
  color: #ffffff;
  cursor: pointer;
}

.sales-chat-btn-secondary {
  background: #e9eefc;
  color: #2f3f63;
}

.sales-chat-thread {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.sales-chat-message {
  display: flex;
}

.sales-chat-message.assistant {
  justify-content: flex-start;
}

.sales-chat-message.user {
  justify-content: flex-end;
}

.sales-chat-bubble {
  max-width: 82%;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.5;
  white-space: pre-line;
}

.sales-chat-message.assistant .sales-chat-bubble {
  background: #ffffff;
  border: 1px solid #d6e2ff;
  color: #1f2b45;
}

.sales-chat-message.user .sales-chat-bubble {
  background: #2f6bff;
  color: #ffffff;
}

.sales-chat-input {
  margin-top: 12px;
  display: flex;
  align-items: center;
  border: none;
  border-radius: 999px;
  padding: 6px 14px;
  background: #ffffff;
  box-shadow: 0 18px 32px rgba(47, 107, 255, 0.25);
  position: relative;
}

.sales-chat-input input {
  flex: 1;
  min-width: 0;
  border: none;
  font-size: 14px;
  outline: none;
  height: 44px;
  padding-left: 16px;
  padding-right: 130px;
  background: transparent;
}

.sales-chat-send {
  border: none;
  border-radius: 999px;
  padding: 8px 20px;
  min-width: 82px;
  height: 40px;
  background: linear-gradient(135deg, #3c7bfc, #2265f1);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 12px 24px rgba(37, 79, 198, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sales-chat-send:hover {
  transform: translateY(-52%);
  box-shadow: 0 14px 26px rgba(32, 69, 181, 0.45);
}

.sales-chat-send:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
}
.sales-chat-send-highlight {
  animation: sendPulse 0.6s ease-out;
}
.sales-chat-send-highlight:hover {
  transform: translateY(-52%);
}
.sales-chat-input::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(47, 107, 255, 0.25);
  pointer-events: none;
}

.sales-chat-message.sales-chat-typing .sales-chat-bubble {
  background: linear-gradient(120deg, rgba(47, 107, 255, 0.08), rgba(255, 255, 255, 0.8));
  border: 1px dashed rgba(47, 107, 255, 0.4);
  font-style: italic;
  color: #1f2b45;
}

@keyframes sendPulse {
  0% {
    transform: translateY(-54%);
    box-shadow: 0 12px 24px rgba(37, 79, 198, 0.45);
  }
  50% {
    transform: translateY(-60%);
    box-shadow: 0 20px 30px rgba(118, 167, 255, 0.45);
  }
  100% {
    transform: translateY(-54%);
    box-shadow: 0 12px 24px rgba(37, 79, 198, 0.45);
  }
}

@media (max-width: 540px) {
  .sales-chat-input {
    flex-direction: column;
    gap: 8px;
    padding: 10px 12px;
    min-height: 0;
  }

  .sales-chat-send {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    height: 44px;
    order: 2;
  }

  .sales-chat-input input {
    padding-right: 16px;
    height: 44px;
  }
}

.sales-chat-hidden {
  display: none;
}

@media (max-width: 768px) {
  .sales-chat-widget {
    right: 12px;
    bottom: 10px;
  }

  .sales-chat-panel {
    width: calc(100vw - 32px);
    max-height: calc(100vh - 96px);
  }

  .sales-chat-toggle-text {
    display: none;
  }
}
