/* ─────────────── ROOT ─────────────── */
:root {
  --saya-red: #c41212;
  --saya-red-dark: #a00e0e;
  --saya-red-light: #fdf2f2;
  --saya-gold: #b8952a;
  --saya-gold-dark: #9a7a20;
  --saya-white: #fff;
  --saya-off: #f8f7f5;
  --saya-dark: #1a1a1a;
  --saya-gray: #6b7280;
  --saya-border: #e8e0d8;
  --saya-head: "Playfair Display", serif;
  --saya-body: "Inter", sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--saya-body);
  background: #fff;
  color: var(--saya-dark);
  overflow-x: hidden;
}
h1,
h2,
h3,
h4 {
  font-family: var(--saya-head);
}
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-thumb {
  background: var(--saya-red);
}

/* ─────────────── NAVBAR ─────────────── */
.saya-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--saya-border);
  transition: box-shadow 0.3s;
}
.saya-nav.scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.09);
}
.saya-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.saya-logo {
  width: 246px;
  flex-shrink: 0;
  cursor: pointer;
}
.saya-logo img {
  width: 100%;
  height: auto;
  display: block;
}
.saya-logo-fb {
  font-family: var(--saya-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--saya-dark);
}
.saya-logo-fb span {
  color: var(--saya-red);
}
.saya-nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
}
.saya-nav-links a {
  text-decoration: none;
  color: var(--saya-gray);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 1.5px solid transparent;
}
.saya-nav-links a:hover {
  color: var(--saya-red);
  border-color: var(--saya-red);
}
.saya-nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.saya-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 7px;
  cursor: pointer;
  background: transparent;
  border: 1.5px solid var(--saya-border);
  border-radius: 7px;
  flex-shrink: 0;
}
.saya-hamburger span {
  display: block;
  height: 2px;
  background: var(--saya-dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.saya-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.saya-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.saya-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.saya-mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 999;
  border-bottom: 2px solid var(--saya-red);
  transform: translateY(-110%);
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}
.saya-mobile-menu.open {
  transform: translateY(0);
}
.saya-mobile-menu a {
  display: block;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--saya-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--saya-border);
}
.saya-mobile-menu a:hover {
  color: var(--saya-red);
  background: var(--saya-red-light);
}
.saya-mob-actions {
  padding: 16px 24px;
  display: flex;
  gap: 10px;
  flex-direction: column;
}

/* ─────────────── BUTTONS ─────────────── */
.saya-btn {
  font-family: var(--saya-body);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 5px;
  cursor: pointer;
  border: none;
  letter-spacing: 0.4px;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.saya-btn-primary {
  background: var(--saya-red);
  color: #fff;
}
.saya-btn-primary:hover {
  background: var(--saya-red-dark);
  box-shadow: 0 6px 20px rgba(196, 18, 18, 0.3);
  transform: translateY(-1px);
}
.saya-btn-outline {
  background: transparent;
  color: var(--saya-red);
  border: 1.5px solid var(--saya-red);
}
.saya-btn-outline:hover {
  background: var(--saya-red);
  color: #fff;
}
.saya-btn-white {
  background: #fff;
  color: var(--saya-red);
}
.saya-btn-white:hover {
  background: var(--saya-red-light);
}
.saya-btn-white-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}
.saya-btn-white-ghost:hover {
  background: #fff;
  color: var(--saya-red);
}
.saya-btn-full {
  width: 100%;
  padding: 14px;
}
.saya-btn-lg {
  padding: 13px 32px;
  font-size: 14px;
}
.saya-btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* ─────────────── HERO ─────────────── */
#saya-home {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
#saya-home::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 130px;
  background: linear-gradient(to top, #fff, transparent);
  z-index: 5;
  pointer-events: none;
}
.saya-hero-swiper {
  width: 100%;
  height: 100%;
}
.saya-swiper-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.saya-swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(13, 13, 13, 0.83) 0%,
    rgba(13, 13, 13, 0.48) 55%,
    rgba(13, 13, 13, 0.18) 100%
  );
  z-index: 1;
}
.saya-slide-bg-1 {
  background-image: url("../assets/images/banner1.png");
}
.saya-slide-bg-2 {
  background-image: url("../assets/images/bannner2.webp");
}
.saya-slide-bg-3 {
  background-image: url("../assets/images/banner1.webp");
}
.saya-slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 48px;
}
.saya-slide-text {
  flex: 1;
  padding-top: 30px;
}
.saya-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 30px;
  padding: 7px 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 22px;
  background: rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
}
.saya-hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--saya-red);
  animation: saya-pulse 1.5s infinite;
}
@keyframes saya-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}
.saya-slide-title {
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.15;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.saya-slide-title em {
  color: #f4c94e;
  font-style: italic;
}
.saya-slide-desc {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 14px;
  max-width: 480px;
}
.saya-slide-desc strong {
  color: #fff;
}
.saya-slide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.saya-slide-tag {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}
.saya-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.saya-hero-form-card {
  width: 330px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}
.saya-hform-tag {
  background: var(--saya-red);
  text-align: center;
  padding: 11px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}
.saya-hform-body {
  padding: 18px 20px;
}
.saya-hform-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--saya-dark);
  margin-bottom: 3px;
}
.saya-hform-sub {
  font-size: 11px;
  color: var(--saya-gray);
  margin-bottom: 14px;
}
.saya-swiper-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: background 0.25s;
  backdrop-filter: blur(8px);
}
.saya-swiper-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}
.saya-btn-prev {
  left: 20px;
}
.saya-btn-next {
  right: 20px;
}
.saya-swiper-btn::after {
  display: none;
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
  transition: all 0.3s;
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  background: #fff;
  width: 24px;
  border-radius: 4px;
}

/* ── HERO INFO CARD ── */
.saya-hero-info-card {
  width: 320px;
  min-width: 300px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
}
.shic-banner {
  background: var(--saya-red);
  color: #fff;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  padding: 9px 12px;
  text-transform: uppercase;
}
.shic-body {
  padding: 18px 18px 0;
  text-align: center;
}
.shic-title {
  font-size: 26px;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 5px;
}
.shic-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 13px;
  color: #555;
  margin-bottom: 2px;
}
.shic-location svg {
  width: 13px;
  height: 13px;
  fill: var(--saya-red);
  flex-shrink: 0;
}
.shic-by {
  font-size: 12px;
  color: #777;
  margin-bottom: 14px;
}
.shic-specs {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 12px;
  text-align: left;
}
.shic-spec-row {
  display: flex;
  align-items: center;
  font-size: 12.5px;
  color: #333;
  padding: 4px 0;
}
.shic-spec-row:not(:last-child) {
  border-bottom: 1px solid #e8e8e8;
}
.shic-spec-key {
  width: 86px;
  color: #666;
  font-weight: 500;
}
.shic-spec-col {
  margin: 0 7px;
  color: #999;
}
.shic-spec-val {
  font-weight: 600;
  color: #222;
}
.shic-highlights {
  border: 1.5px solid #ddd;
  border-left: 3px solid var(--saya-red);
  border-radius: 8px;
  padding: 9px 13px;
  margin-bottom: 14px;
  text-align: left;
}
.shic-highlight {
  font-size: 12.5px;
  color: #333;
  font-weight: 500;
  padding: 2px 0;
}
.shic-config {
  font-size: 12.5px;
  color: #333;
  font-weight: 500;
  margin-bottom: 3px;
}
.shic-price-label {
  font-size: 12.5px;
  color: var(--saya-red);
  font-weight: 600;
  margin-bottom: 3px;
}
.shic-price {
  font-size: 28px;
  font-weight: 800;
  color: #111;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  line-height: 1;
  margin-bottom: 13px;
}
.shic-price .rupee {
  font-size: 22px;
  margin-bottom: 1px;
}
.shic-price .onwards {
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin-bottom: 2px;
}
.shic-btn {
  display: block;
  width: 100%;
  background: var(--saya-red);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  margin-bottom: 14px;
  transition: background 0.2s;
}
.shic-btn:hover {
  background: #6e1414;
}
.shic-rera {
  border-top: 1px solid #eee;
  padding: 10px 18px 13px;
  text-align: center;
}
.shic-rera-line {
  font-size: 11px;
  color: #777;
  line-height: 1.9;
}
.shic-rera-line strong {
  color: #444;
}

/* ─────────────── FORM STYLES ─────────────── */
.saya-field {
  margin-bottom: 14px;
}
.saya-field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--saya-gray);
  margin-bottom: 6px;
  font-weight: 600;
}
.saya-field input,
.saya-field select,
.saya-field textarea {
  width: 100%;
  background: var(--saya-off);
  border: 1.5px solid var(--saya-border);
  border-radius: 7px;
  padding: 11px 14px;
  color: var(--saya-dark);
  font-family: var(--saya-body);
  font-size: 13px;
  outline: none;
  transition:
    border-color 0.25s,
    background 0.25s;
}
.saya-field input::placeholder,
.saya-field textarea::placeholder {
  color: #b0b0b0;
}
.saya-field input:focus,
.saya-field select:focus,
.saya-field textarea:focus {
  border-color: var(--saya-red);
  background: #fff;
}
.saya-field.error input,
.saya-field.error select,
.saya-field.error textarea {
  border-color: #e53e3e;
}
.saya-err-msg {
  font-size: 10px;
  color: #e53e3e;
  margin-top: 4px;
  display: none;
}
.saya-field.error .saya-err-msg {
  display: block;
}
.saya-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.saya-form-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
}
.saya-form-divider::before,
.saya-form-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--saya-border);
}
.saya-form-divider span {
  font-size: 10px;
  color: var(--saya-gray);
  letter-spacing: 0.8px;
  white-space: nowrap;
}
.saya-privacy {
  font-size: 10px;
  color: var(--saya-gray);
  text-align: center;
  margin-top: 10px;
  line-height: 1.6;
}
.saya-privacy a {
  color: var(--saya-red);
  text-decoration: none;
}
.saya-form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  gap: 12px;
}
.saya-form-success.show {
  display: flex;
}
.saya-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--saya-red-light);
  border: 2px solid var(--saya-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--saya-red);
}
.saya-form-success h3 {
  font-size: 20px;
  color: var(--saya-dark);
}
.saya-form-success p {
  font-size: 13px;
  color: var(--saya-gray);
  line-height: 1.7;
}
.saya-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.saya-btn.loading .saya-spinner {
  display: inline-block;
}
.saya-btn.loading .saya-btn-label {
  display: none;
}
@media (max-width: 1024px) {
  .saya-field {
    margin-bottom: 8px;
  }
  .saya-modal-body {
    padding: 14px 32px;
  }
  .saya-modal-header {
    padding: 14px 32px 14px;
  }
}
/* ─────────────── SECTIONS ─────────────── */
.saya-section {
  padding: 80px 0;
}
.saya-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.saya-section-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--saya-red);
  font-weight: 600;
  margin-bottom: 10px;
}
.saya-section-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.saya-divider {
  width: 48px;
  height: 3px;
  background: var(--saya-red);
  border-radius: 2px;
  margin: 16px 0 28px;
}
.saya-vtab {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--saya-head);
  font-size: 56px;
  font-weight: 700;
  color: rgba(196, 18, 18, 0.05);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 2px;
}

/* OVERVIEW */
#saya-overview {
  background: #fff;
  position: relative;
  overflow: hidden;
}
.saya-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.saya-overview-img {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.saya-overview-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.saya-overview-img::before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.347);
  width: 100%;
  height: 100%;
  top: 0;
}
.saya-overview-img::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  border: 2px solid var(--saya-red);
  transform: translate(10px, 10px);
  z-index: -1;
}
.saya-overview-img .saya-buttonnover-image {
  margin-top: 28px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: max-content;
}
.saya-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--saya-border);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 28px;
}
.saya-stat {
  background: #fff;
  padding: 18px;
  text-align: center;
}
.saya-stat-val {
  font-size: 22px;
  font-weight: 700;
  color: var(--saya-red);
  font-family: var(--saya-head);
}
.saya-stat-lbl {
  font-size: 11px;
  color: var(--saya-gray);
  margin-top: 3px;
  letter-spacing: 0.5px;
}

/* ════ PRICE — CARD SWIPER (image top, content bottom) ════ */
#saya-price {
  background: var(--saya-off);
  position: relative;
  overflow: hidden;
}
.saya-price-swiper-wrap {
  position: relative;
  padding: 0 56px;
}
.saya-price-prev,
.saya-price-next {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--saya-border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--saya-red);
  font-size: 16px;
  transition: all 0.25s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.saya-price-prev:hover,
.saya-price-next:hover {
  background: var(--saya-red);
  color: #fff;
  border-color: var(--saya-red);
}
.saya-price-prev {
  left: 0;
}
.saya-price-next {
  right: 0;
}

/* Card — base */
.saya-price-card-new {
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--saya-border);
  transition:
    transform 0.35s,
    box-shadow 0.35s,
    border-color 0.35s;
  cursor: default;
}

/* Hover → active look */
.saya-price-card-new:hover,
.saya-price-card-new.active-card {
  /* border: 2px solid var(--saya-red); */
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(196, 18, 18, 0.15);
}
.saya-price-card-new:hover .pc-content,
.saya-price-card-new.active-card .pc-content {
  background: var(--saya-dark);
}
.saya-price-card-new:hover .pc-bhk,
.saya-price-card-new.active-card .pc-bhk {
  color: #fff;
}
.saya-price-card-new:hover .pc-area,
.saya-price-card-new.active-card .pc-area {
  color: rgba(255, 255, 255, 0.65);
}
.saya-price-card-new:hover .pc-divider,
.saya-price-card-new.active-card .pc-divider {
  background: var(--saya-red);
}
.saya-price-card-new:hover .pc-price,
.saya-price-card-new.active-card .pc-price {
  color: rgba(255, 255, 255, 0.85);
}
.saya-price-card-new:hover .pc-bed-tag,
.saya-price-card-new.active-card .pc-bed-tag {
  background: var(--saya-red);
}
.saya-price-card-new:hover .pc-img-wrap img,
.saya-price-card-new.active-card .pc-img-wrap img {
  /* filter: blur(5px); */
  opacity: 1;
  transform: scale(1.03);
}
.saya-price-card-new:hover .pc-cta,
.saya-price-card-new.active-card .pc-cta {
  background: var(--saya-red);
  border-color: var(--saya-red);
  color: #fff;
}
.saya-price-card-new:hover .pc-cta:hover,
.saya-price-card-new.active-card .pc-cta:hover {
  background: var(--saya-red-dark);
  border-color: var(--saya-red-dark);
}

/* Image area */
.pc-img-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: var(--saya-off);
}
.pc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.4s,
    filter 0.4s,
    opacity 0.4s;
  filter: blur(5px);
  opacity: 0.85;
}
.pc-bed-tag {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: var(--saya-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  text-transform: uppercase;
  transition: background 0.35s;
}

/* Content area */
.pc-content {
  background: #fff;
  padding: 26px 24px 24px;
  text-align: center;
  transition: background 0.35s;
}
.pc-bhk {
  font-size: 26px;
  font-weight: 700;
  color: var(--saya-dark);
  font-family: var(--saya-head);
  margin-bottom: 8px;
  transition: color 0.35s;
}
.pc-area {
  font-size: 13px;
  color: var(--saya-gray);
  margin-bottom: 12px;
  transition: color 0.35s;
}
.pc-divider {
  width: 48px;
  height: 3px;
  background: var(--saya-red);
  border-radius: 2px;
  margin: 0 auto 14px;
  transition: background 0.35s;
}
.pc-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--saya-red);
  margin-bottom: 18px;
  transition: color 0.35s;
}
.pc-cta {
  display: block;
  width: 100%;
  padding: 13px;
  font-family: var(--saya-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: transparent;
  border: 1.5px solid var(--saya-dark);
  color: var(--saya-dark);
  cursor: pointer;
  transition: all 0.25s;
  border-radius: 5px;
}
.pc-cta:hover {
  background: var(--saya-dark);
  color: #fff;
}

.saya-price-pagination {
  text-align: center;
  margin-top: 28px;
}
.saya-price-pagination .swiper-pagination-bullet {
  background: var(--saya-border);
  opacity: 1;
  width: 8px;
  height: 8px;
}
.saya-price-pagination .swiper-pagination-bullet-active {
  background: var(--saya-red);
  width: 22px;
  border-radius: 4px;
}

/* CTA BANNER */
.saya-cta-banner {
  background: var(--saya-red);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.saya-cta-banner::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
.saya-cta-banner::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 80px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}
.saya-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
}
.saya-cta-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
}
.saya-cta-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.saya-cta-text {
  flex: 1;
}
.saya-cta-text h2 {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}
.saya-cta-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}
.saya-cta-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

/* FLOOR PLAN */
#saya-floorplan {
  background: #fff;
  position: relative;
  overflow: hidden;
}
.saya-plan-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--saya-border);
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.saya-plan-tab {
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  color: var(--saya-gray);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
}
.saya-plan-tab.active {
  color: var(--saya-red);
  border-color: var(--saya-red);
}
.saya-plan-panel {
  display: none;
}
.saya-plan-panel.active {
  display: block;
}
.saya-plan-img-wrap {
  background: var(--saya-off);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding: 24px;
}
.saya-plan-placeholder {
  width: 100%;
  height: 380px;
  background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

/* ════ AMENITIES — SWIPER ════ */
#saya-amenities {
  background: var(--saya-off);
  position: relative;
  overflow: hidden;
}
.saya-amenity-swiper-wrap {
  position: relative;
  padding: 0 50px;
}
.saya-amenity-prev,
.saya-amenity-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--saya-border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--saya-red);
  font-size: 16px;
  transition: all 0.25s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.saya-amenity-prev:hover,
.saya-amenity-next:hover {
  background: var(--saya-red);
  color: #fff;
  border-color: var(--saya-red);
}
.saya-amenity-prev {
  left: 0;
}
.saya-amenity-next {
  right: 0;
}
.saya-amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.saya-amenity-card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.saya-amenity-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.saya-amenity-card:hover img {
  transform: scale(1.06);
}
.saya-amenity-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
}
.saya-amenity-pagination {
  text-align: center;
  margin-top: 24px;
}
.saya-amenity-pagination .swiper-pagination-bullet {
  background: var(--saya-border);
  opacity: 1;
}
.saya-amenity-pagination .swiper-pagination-bullet-active {
  background: var(--saya-red);
  width: 22px;
  border-radius: 4px;
}

/* ════ GALLERY ════ */
#saya-gallery {
  background: #fff;
  position: relative;
  overflow: hidden;
}
.saya-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.saya-gallery-item {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.saya-gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.saya-gallery-item:hover img {
  transform: scale(1.06);
}
.saya-gallery-item:first-child {
  grid-column: span 2;
}
.saya-gallery-item:first-child img {
  height: 260px;
}
/* mobile swiper */
.saya-gallery-swiper-wrap {
  display: none;
  position: relative;
  padding: 0 50px;
}
.saya-gallery-prev,
.saya-gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--saya-border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--saya-red);
  font-size: 16px;
  transition: all 0.25s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.saya-gallery-prev:hover,
.saya-gallery-next:hover {
  background: var(--saya-red);
  color: #fff;
  border-color: var(--saya-red);
}
.saya-gallery-prev {
  left: 0;
}
.saya-gallery-next {
  right: 0;
}
.saya-gallery-swiper .saya-gallery-item img {
  height: 260px;
}
.saya-gallery-pagination {
  text-align: center;
  margin-top: 16px;
}
.saya-gallery-pagination .swiper-pagination-bullet {
  background: var(--saya-border);
  opacity: 1;
}
.saya-gallery-pagination .swiper-pagination-bullet-active {
  background: var(--saya-red);
  width: 22px;
  border-radius: 4px;
}

/* ════ LOCATION ════ */
#saya-location {
  background: var(--saya-off);
  position: relative;
  overflow: hidden;
}
.saya-location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.saya-map-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--saya-border);
}
.saya-map-label {
  font-size: 14px;
  font-weight: 700;
  padding: 14px 18px;
  background: #fff;
  border-bottom: 1px solid var(--saya-border);
}
.saya-map-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.saya-map-cta {
  background: var(--saya-red);
  padding: 14px;
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  letter-spacing: 0.4px;
}
/* connectivity panel */
.saya-location-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.saya-location-info-header {
  background: var(--saya-dark);
  padding: 16px 20px;
  border-radius: 10px 10px 0 0;
}
.saya-location-info-header h3 {
  font-size: 18px;
  color: #fff;
  font-family: var(--saya-head);
}
.saya-location-info-header p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 3px;
}
.saya-connectivity-list {
  background: #fff;
  border: 1px solid var(--saya-border);
  border-top: none;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}
.saya-connect-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--saya-border);
  transition: background 0.2s;
}
.saya-connect-item:last-child {
  border-bottom: none;
}
.saya-connect-item:hover {
  background: var(--saya-red-light);
}
.saya-connect-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--saya-red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
}
.saya-connect-text {
  flex: 1;
}
.saya-connect-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--saya-dark);
}
.saya-connect-time {
  font-size: 11px;
  color: var(--saya-gray);
  margin-top: 1px;
}
.saya-connect-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--saya-red);
  background: var(--saya-red-light);
  padding: 3px 10px;
  border-radius: 12px;
  white-space: nowrap;
}
/* old connectivity (kept for reference, hidden) */
.saya-connectivity {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.saya-connect-icon {
  color: var(--saya-red);
  font-size: 16px;
  flex-shrink: 0;
}

/* VIRTUAL TOUR */
#saya-tour {
  background: #fff;
  position: relative;
  overflow: hidden;
}
.saya-tour-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}
.saya-tour-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.saya-tour-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.saya-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.saya-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 0 16px rgba(255, 255, 255, 0.15);
}
.saya-play-btn svg {
  width: 28px;
  height: 28px;
  margin-left: 5px;
  fill: var(--saya-red);
}
.saya-tour-title {
  font-family: var(--saya-head);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.saya-tour-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

/* DEVELOPER */
#saya-developer {
  background: var(--saya-off);
  position: relative;
  overflow: hidden;
}
.saya-dev-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.saya-dev-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  width: 50%;
}
.saya-dev-logo-text {
  font-family: var(--saya-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--saya-red);
}
.saya-dev-logo-divider {
  width: 1px;
  height: 36px;
  background: var(--saya-border);
}
.saya-dev-content p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--saya-gray);
  margin-bottom: 16px;
}
.saya-rera-box {
  background: #fff;
  border: 1px solid var(--saya-border);
  border-radius: 8px;
  padding: 20px 22px;
  margin-top: 24px;
}
.saya-rera-box h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--saya-dark);
}
.saya-rera-item {
  font-size: 13px;
  color: var(--saya-gray);
  margin-bottom: 6px;
}
.saya-rera-item strong {
  color: var(--saya-dark);
}
.saya-compliance-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.saya-compliance-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--saya-gray);
  padding: 12px 16px;
  background: #fff;
  border-radius: 7px;
  border-left: 3px solid var(--saya-red);
}
.saya-compliance-list li::before {
  content: "✓";
  color: var(--saya-red);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* FOOTER */
.saya-footer {
  background: var(--saya-dark);
  padding: 18px 0;
}
.saya-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.saya-footer-logo {
  color: #fff;
  width: 220px;
  background-color: #fff;
  padding: 14px 12px;
}
.saya-footer-logo span {
  color: var(--saya-red);
}
.saya-footer-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}
.saya-footer-links {
  display: flex;
  gap: 16px;
}
.saya-footer-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}
.saya-footer-links a:hover {
  color: var(--saya-red);
}

/* MODALS */
.saya-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 2000;
  backdrop-filter: blur(4px);
}
.saya-modal.saya-active {
  display: flex;
}
.saya-modal-right {
  justify-content: flex-end;
}
.saya-modal-right .saya-modal-panel {
  animation: saya-slideR 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
@keyframes saya-slideR {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.saya-modal-left {
  justify-content: flex-start;
}
.saya-modal-left .saya-modal-panel {
  animation: saya-slideL 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
@keyframes saya-slideL {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.saya-modal-panel {
  width: 440px;
  height: 100%;
  background: #fff;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.saya-modal-header {
  background: var(--saya-red);
  padding: 28px 32px 28px;
  position: relative;
}
.saya-modal-header .saya-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.saya-modal-header .saya-close:hover {
  background: rgba(255, 255, 255, 0.35);
}
.saya-modal-eyebrow {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 8px;
  background: #fff;
  width: 50%;
  padding: 10px;
}
.saya-modal-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}
.saya-modal-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 10px;
  line-height: 1.6;
}
.saya-modal-body {
  padding: 28px 32px;
  flex: 1;
}
.saya-info-modal-header {
  background: var(--saya-dark);
  padding: 36px 32px 28px;
  position: relative;
  border-bottom: 3px solid var(--saya-red);
}
.saya-info-modal-header .saya-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.saya-info-modal-header .saya-close:hover {
  background: rgba(255, 255, 255, 0.25);
}
.saya-info-logo {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--saya-gold);
  margin-bottom: 8px;
}
.saya-info-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
.saya-info-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 5px;
}
.saya-info-body {
  padding: 24px 32px;
  flex: 1;
  overflow-y: auto;
}
.saya-info-section {
  margin-bottom: 26px;
}
.saya-info-section h4 {
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--saya-red);
  margin-bottom: 12px;
  font-weight: 700;
}
.saya-spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid var(--saya-border);
  font-size: 13px;
}
.saya-spec-item:last-child {
  border-bottom: none;
}
.saya-spec-key {
  color: var(--saya-gray);
}
.saya-spec-val {
  font-weight: 600;
  color: var(--saya-dark);
}
.saya-amenity-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.saya-amenity-badge {
  background: var(--saya-red-light);
  color: var(--saya-red);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 20px;
}

/* INFO CARD MODAL (mobile bottom sheet) */
.saya-infocard-modal {
  display: none;
}

/* CONSENT */
.saya-consent-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #f8f8f8;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 14px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.saya-consent-wrap.error {
  border-color: #e53935;
  background: #fff5f5;
}
.saya-consent-wrap input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--saya-red);
  cursor: pointer;
}
.saya-consent-label {
  font-size: 12.5px;
  color: #444;
  line-height: 1.6;
}
.saya-consent-err {
  font-size: 11.5px;
  color: #e53935;
  margin-top: -10px;
  margin-bottom: 14px;
  display: none;
}

/* ─────────────── RESPONSIVE ─────────────── */
@media (max-width: 1024px) {
  .saya-amenity-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .saya-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .saya-gallery-item:first-child {
    grid-column: span 1;
  }
  .saya-gallery-item:first-child img {
    height: 200px;
  }
}
@media (max-width: 900px) {
  .saya-logo {
    width: 180px;
  }
  .saya-hero-form-card {
    display: none;
  }
  .saya-nav-links {
    display: none;
  }
  .saya-nav-actions .saya-btn-outline {
    display: none;
  }
  .saya-nav-actions .saya-btn.saya-btn-primary {
    display: none;
  }
  .saya-hamburger {
    display: flex;
  }
  .saya-nav-inner {
    padding: 0 20px;
  }
  .saya-hero-info-card {
    display: none;
  }
  /* mobile infocard modal */
  .saya-infocard-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.55);
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .saya-infocard-modal.open {
    display: flex;
  }
  .saya-infocard-modal-inner {
    width: 100%;
    max-width: 480px;
    max-height: 92dvh;
    overflow-y: auto;
    background: #fff;
    border-radius: 20px 20px;
    animation: slideUp 0.3s ease;
    margin: 0 10px;
    position: relative;
  }
  @keyframes slideUp {
    from {
      transform: translateY(100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  .saya-infocard-modal-close {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 1.5%;
    right: 12px;
  }
  .saya-infocard-modal-close span {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    letter-spacing: 0.3px;
  }
  .saya-infocard-modal-close button {
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 16px;
    cursor: pointer;
    color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .saya-container {
    padding: 0 20px;
  }
  .saya-slide-content {
    padding: 0 20px;
  }
  .saya-overview-grid,
  .saya-dev-grid {
    grid-template-columns: 1fr;
  }
  .saya-location-grid {
    grid-template-columns: 1fr;
  }
  .saya-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
  }
  .saya-modal-panel {
    width: 100%;
  }
  .saya-section {
    padding: 56px 0;
  }
  .saya-swiper-btn {
    display: none;
  }
  .saya-footer-inner {
    padding: 0 20px;
  }
  .saya-cta-icon {
    display: none;
  }
  .saya-gallery-grid {
    display: none;
  }
  .saya-gallery-swiper-wrap {
    display: block;
  }
  .saya-price-swiper-wrap {
    padding: 0 40px;
  }
  .saya-amenity-swiper-wrap {
    padding: 0 40px;
  }
}
@media (max-width: 480px) {
  .saya-amenity-grid {
    grid-template-columns: 1fr 1fr;
  }
  .saya-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .saya-connectivity {
    grid-template-columns: 1fr;
  }
  .saya-hero-actions {
    flex-direction: column;
  }
  .saya-hero-actions .saya-btn {
    width: 100%;
  }
  .saya-plan-tab {
    padding: 10px 14px;
    font-size: 12px;
  }
  .saya-field-row {
    grid-template-columns: 1fr;
    gap: 0px;
  }
  .saya-price-swiper-wrap {
    padding: 0 36px;
  }
  .saya-amenity-swiper-wrap {
    padding: 0 36px;
  }
  .saya-gallery-swiper-wrap {
    padding: 0 36px;
  }
}
@media (max-width: 1024px) {
  .saya-nav-actions.backtohome .saya-btn-outline{
    display: flex;
  }
  .saya-btn {
    font-size: 12px;
    padding: 8px 10px;
}
}