* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
html {
  scroll-behavior: smooth;
}
html,
body {
  width: 100%;
  overflow-x: hidden;
}

/* عرض شريط الاسكرول */
::-webkit-scrollbar {
  width: 10px;
}

/* الخلفية */
::-webkit-scrollbar-track {
  background: rgb(19, 32, 53);
}
::-webkit-scrollbar-track:hover {
  background: rgb(0, 0, 0);
}
/* الجزء اللي بيتحرك */
::-webkit-scrollbar-thumb {
  background: rgb(255, 180, 64);
}

/* لما تقف عليه */
::-webkit-scrollbar-thumb:hover {
  background: rgb(255, 153, 0);
}

body {
  background-color: #ffffff;
  min-height: 100vh;
  overflow-x: hidden;
}
/* Start */
/* ===== Overlay ===== */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 998;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border-bottom: none;
}
.nav-menu li a {
  font-weight: 500;
  font-size: 14px;
}
.header.scrolled .nav-menu li a,
.header.scrolled ul.nav-menu-social.align-to-right li a,
.header.scrolled .lang-btn svg {
  color: rgb(19, 32, 53);
}
.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
article.logo-and-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.logo img {
  width: 50px;
  height: 50px;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-item {
  margin-left: 30px;
}

.nav-link {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 16px;
  padding: 10px 0;
}
ul.nav-menu-social.align-to-right {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 15px;
}

ul.nav-menu-social.align-to-right li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.add-listing.light {
  display: inline-flex;
  background: #ffffff;
  height: 52px;
  padding: 10px 20px;
  border-radius: 0.3rem;
  align-items: center;
  justify-content: center;
}
.add-listing.none,
li.signup-small {
  display: none;
}
.header.scrolled .add-listing.light a {
  color: rgb(19, 32, 53) !important;
}
.add-listing.light a {
  color: rgb(19, 32, 53) !important;
}

.header.scrolled .add-listing.light {
  background: rgb(255, 180, 64);
}
rect.line-1 {
  color: white;
}
.header.scrolled rect.line-1 {
  color: #FFB440;
}
rect.line-2,
rect.line-3 {
  color: #edf1fb;
}
.header.scrolled rect.line-2,
.header.scrolled rect.line-3 {
  color: #FFB440;
}

/* ===== Hamburger ===== */
.menu-toggle {
  display: none;
  cursor: pointer;
  z-index: 1001;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* ===== Mobile Menu ===== */
@media screen and (max-width: 1024px) {
  .header {
    background-color: #ffffff;
    position: static;
    box-shadow: 10px 0 20px rgba(0, 0, 0, 0.1);
  }
  header {
    position: static;
  }
  .nav-menu li a,
  ul.nav-menu-social.align-to-right li a,
  .lang-btn svg {
    color: #131451 !important;
  }
  .add-listing.light a {
    color: #ffffff !important;
  }
  rect.line-1 {
    color: #FFB440;
  }
  rect.line-2,
  rect.line-3 {
    color: #FFB440;
  }
  .nav-link {
    color: #131451;
  }
  .bar {
    background-color: #131451;
  }
  .menu-toggle,
  .add-listing.none,
  li.signup-small {
    display: block;
  }
  .nav-menu {
    position: fixed;
    left: -280px;
    top: 81px;
    flex-direction: column;
    background-color: #fff;
    width: 280px;
    text-align: left;
    transition: 0.3s;
    box-shadow: 10px 0 20px rgba(0, 0, 0, 0.1);
    padding: 20px 15px;
    height: calc(100vh - 70px);
    overflow-y: auto;
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 4px 0;
  }

  .nav-link {
    color: #333;
    width: 100%;
    display: block;
    padding: 10px;
  }
  .add-listing.light,
  li.signup-big {
    display: none;
  }
  .lang-btn.lang-btn-big {
    display: none;
  }
  .lang-btn.lang-btn-small {
    display: block;
  }
}

/* ===== HERO SECTION ===== */
.ds-wrap {
  height: 100vh;
  background: rgb(13 110 253 / 10%);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative; /* مهم جدًا */
  overflow: hidden;
} /* الطبقة الثابتة (النسخة) */

.ds-ghost {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
  opacity: 0;
  transition: opacity 120ms ease;
  pointer-events: none;
}

/* الصور المتحركة */
.ds-panel {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 2;
  will-change: transform;
}

/* ===== GAP ===== */
.ds-maskA {
  clip-path: polygon(0 0, 57.7% 0, 42.7% 100%, 0 100%);
}
.ds-maskB {
  clip-path: polygon(58.2% 0, 100% 0, 100% 100%, 43.2% 100%);
}

/* Overlay خفيف */
.ds-panel::after,
.ds-ghost::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0.3)
  );
  pointer-events: none;
}

/* ===== الحركة ===== */
@keyframes dsMoveA {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(50%);
  }
}
@keyframes dsMoveB {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.ds-wrap.ds-running #dsLeft {
  animation: dsMoveA 1100ms ease-in-out forwards;
}
.ds-wrap.ds-running #dsRight {
  animation: dsMoveB 1100ms ease-in-out forwards;
}

/* لما الحركة تبدأ.. أظهر النسخ الثابتة */
.ds-wrap.ds-running .ds-ghost {
  opacity: 1;
}
.ds-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.319); /* درجة التغميق */
  z-index: 3;
  pointer-events: none;
}
/* ================= MOBILE ================= */
@media (max-width: 700px) {
  /* GAP أفقي */
  .ds-maskA {
    clip-path: polygon(0 0, 100% 0, 100% 54%, 0 44%);
  }
  .ds-maskB {
    clip-path: polygon(0 46%, 100% 56%, 100% 100%, 0 100%);
  }

  /* الحركة فوق/تحت */
  @keyframes dsMoveA {
    from {
      transform: translateY(0);
    }
    to {
      transform: translateY(50%);
    }
  }
  @keyframes dsMoveB {
    from {
      transform: translateY(0);
    }
    to {
      transform: translateY(-50%);
    }
  }
}
article.para-and-serch {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  z-index: 4;
  width: 100%;
  position: relative;
  padding: 0 15px;
}
.ds-wrap article.para-and-serch h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: white;
  text-align: center;
}
@media(max-width: 812px) {
  .ds-wrap article.para-and-serch h1 {
    font-size: 28px;
  }
}
.ds-wrap article.para-and-serch p {
  font-size: 20px;
  color: white;
  text-align: center;
}

.content {
  width: 90%;
  max-width: 1200px;
  margin: 30px auto;
  text-align: center;
}
/*  */
.lang-btn {
  background: none;
  border: none;
  font-size: 22px;
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: center;
}
.lang-btn svg {
  width: 25px;
  height: 25px;
  color: white;
}
/* ===== Modal ===== */
.lang-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.lang-modal-content {
  background: #fff;
  width: 700px;
  max-width: 95%;
  border-radius: 16px;
  padding: 20px;
  font-family: Arial, sans-serif;
  max-height: 90vh;
  overflow-y: auto;
}

/* ===== Header ===== */
.lang-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lang-header button {
  border: none;
  background: none;
  font-size: 20px;
  cursor: pointer;
}
.lang-btn-small {
  display: none;
}
/* ===== Tabs ===== */
.lang-tabs {
  display: flex;
  border-bottom: 1px solid #eee;
  margin-top: 15px;
}

.lang-tabs .tab {
  padding: 10px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 500;
  flex: 1;
  text-align: center;
}

.lang-tabs .tab.active {
  border-bottom: 2px solid #000;
}

/* ===== Content ===== */
.tab-content {
  display: none;
  margin-top: 20px;
}

.tab-content.active {
  display: block;
}

.lang-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.lang-item {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 12px;
  cursor: pointer;
  transition: 0.3s;
  text-align: center;
}

.lang-item:hover {
  background: #f8f8f8;
}

.lang-item.active {
  border: 2px solid #000;
}
.burger-andicon {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
}
/* =========================
   Responsive Design
========================= */

/* Large screens (desktops) */
@media (max-width: 1200px) {
  .lang-modal-content {
    width: 80%;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .lang-modal-content {
    width: 90%;
    padding: 16px;
  }

  .lang-tabs .tab {
    padding: 8px 14px;
    font-size: 14px;
  }

  .lang-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

/* Small tablets / Large mobiles */
@media (max-width: 768px) {
  .lang-modal-content {
    width: 95%;
    padding: 15px;
  }

  .lang-tabs .tab {
    font-size: 13px;
    padding: 8px 12px;
  }

  .lang-grid {
    grid-template-columns: repeat(2, 1fr); /* Two columns on small tablets */
    gap: 10px;
  }

  .lang-item {
    padding: 10px;
    font-size: 14px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .lang-modal {
    align-items: flex-end; /* Modal slides up from bottom */
  }

  .lang-modal-content {
    width: 100%;
    max-width: 100%;
    border-radius: 16px 16px 0 0;
    padding: 15px;
    animation: slideUp 0.3s ease;
    max-height: 80vh;
  }

  .lang-header h3 {
    font-size: 16px;
  }

  .lang-tabs {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  }

  .lang-tabs .tab {
    flex: none;
    min-width: 120px;
  }

  .lang-grid {
    grid-template-columns: 1fr; /* One column on mobile */
    gap: 10px;
  }

  .lang-item {
    padding: 10px;
    font-size: 14px;
  }
}

/* Animation */
@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
/* End of Favorite Icon Styles */

/* Start of Search Bar Styles */
.search-wrapper {
  max-width: 864px;
  margin: auto;
  width: 100%;
}

.search-bar {
  background: #fff;
  border-radius: 60px;
  display: flex;
  align-items: center;
  padding: 15px;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.search-input {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  border-left: 1px solid #eee;
  padding-left: 20px;
}
.search-input .iconn {
  color: rgb(255, 180, 64);
}
.search-input input.searchss {
  border: none;
  outline: none;
  width: 100%;
  font-size: 16px;
}

.filter-btn {
  background: #f1f5f9;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
}

.filter-icon {
  display: inline-block;
  transition: transform 0.4s ease;
  color: rgb(19, 32, 53);
}

.filter-btn.active .filter-icon {
  transform: rotate(89deg);
}

.search-btn {
  background: rgb(255, 180, 64);
  color: rgb(19, 32, 53);
  border: none;
  padding: 14px 35px;
  border-radius: 40px;
  font-size: 16px;
  cursor: pointer;
  font-weight: 500;
}

/* ================= FILTER PANEL ================= */
.filter-panel {
  max-height: 0;
  margin-top: 20px;
  max-width: 864px;
  width: 100%;
  opacity: 0;
  position: absolute;
  transform: translateY(-10px);
  overflow: hidden;
  padding: 21px;
  border-radius: 8px;
  background: white;
  transition: all 0.45s ease;
}

.filter-panel.active {
  max-height: 1000px;
  opacity: 1;
  transform: translateY(0);
  max-width: 864px;
  width: 100%;
  z-index: 10;
}

.filter-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

/* ================= SEARCHABLE SELECT ================= */
.select-box {
  position: relative;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  background: #fff;
}

.select-value {
  flex: 1;
  font-size: 15px;
  color: #555;
}

.select-box::after {
  content: "▼";
  font-size: 12px;
  transition: transform 0.3s ease;
}

.select-box.open::after {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 10;
}

.dropdown.active {
  display: block;
}

.dropdown input {
  width: 100%;
  border: none;
  outline: none;
  padding: 12px 15px;
  font-size: 14px;
  background: #f8fafc;
  border-radius: 8px 8px 0 0;
}

.option {
  padding: 12px;
  cursor: pointer;
}

.option:hover {
  background: #f1f5f9;
}

.option.hidden {
  display: none;
}

/* ================= AMENITIES ================= */
.amenities h3 {
  margin-bottom: 20px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px 40px;
}

.amenities-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .filter-top {
    grid-template-columns: 1fr;
  }
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  .filter-panel.active,
  .filter-panel {
    width: 96%;
  }
}
@media (max-width: 726px) {
  .filter-panel.active,
  .filter-panel {
    width: 95%;
  }
}
@media (max-width: 576px) {
  .search-bar {
    flex-wrap: wrap;
    border-radius: 20px;
  }
  .search-btn {
    width: 100%;
  }
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  .filter-panel.active,
  .filter-panel {
    width: 94%;
  }
}
@media (max-width: 521px) {
  .filter-panel.active,
  .filter-panel {
    width: 93%;
  }
}
@media (max-width: 426px) {
  .filter-panel.active,
  .filter-panel {
    width: 92%;
  }
}
@media (max-width: 341px) {
  .filter-panel.active,
  .filter-panel {
    width: 91.5%;
  }
}
/* End of Search Bar Styles */
/* Start of Auth Modal Styles */
/* زر تسجيل الدخول */
/* زر تسجيل الدخول */
.login-link {
  font-size: 18px;
  text-decoration: none;
  color: #FFB440;
}

/* Overlay */
.auth-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

/* Title */
.auth-title {
  font-size: 3.5em;
  text-align: center;
  margin: 1rem 0 1em 0;
  font-weight: 800;
  line-height: 0;
}

/* Logo */
.auth-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.auth-logo img {
  width: 60px;
}

/* Inputs */
.auth-input {
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  border: none;
  background: rgb(254, 250, 239);
  margin-bottom: 14px;
  font-size: 15px;
}

/* Options */
.auth-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-bottom: 20px;
}
.remember-me{
  cursor: pointer;
}
.auth-options a {
  color: #131451;
  text-decoration: none;
}
    .password-wrapper {
    position: relative;
    width: 100%;
}

.auth-input {
    width: 100%;
    padding-right: 40px;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 42%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
}
/* Login button */
.auth-submit {
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  border: none;
  background: #FFB440;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

/* Register */
.auth-register {
  text-align: center;
  margin-top: 25px;
  font-size: 14px;
}
.auth-register span {
  color: #131451;
  font-size: 13px;
}
.auth-register a {
  color: #192839;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}
/* End of Auth Modal Styles */
/* Start of Favorite Icon Styles */
/* ===== Favorite Icon ===== */
.compare-fav-btn {
  position: fixed;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #0987f5;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
}

/* ===== Overlay ===== */
.compare-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 9998;
}
.compare-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== Sidebar ===== */
.compare-panel {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  max-width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
  transition: 0.4s;
  z-index: 9999;
  display: flex;
  flex-direction: column;
}
.compare-panel.active {
  right: 0;
}

/* ===== Header ===== */
.compare-header {
  padding: 20px;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
}

.compare-header h4 {
  color: #131451;
}
.compare-close {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #fff5e6;
  color: #FFB440;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ===== List ===== */
.compare-list {
  padding: 15px;
  overflow: auto;
  flex: 1;
}
.compare-item {
  display: flex;
  gap: 12px;
  border: 1px solid #f5e6cc;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 12px;
}
.compare-item img {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
}
.compare-info {
  flex: 1;
}
.compare-info h4 {
  margin: 0 0 6px;
  font-size: 15px;
  color: #131451;
}
.compare-location {
  font-size: 13px;
  color: #131451;
  display: flex;
  align-items: center;
  gap: 5px;
}

article.space-price {
  display: flex;
  justify-content: space-between;
}
.compare-price {
  font-weight: bold;
  color: #FFB440;
  margin-top: 6px;
  gap: 5px;
  display: flex;
  align-items: center;
}
/* ===== Button ===== */
.compare-footer {
  padding: 15px;
  border-top: 1px solid #eee;
}
.compare-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: #fff5e6;
  color: #FFB440;
  font-size: 16px;
  cursor: pointer;
  font-weight: 500;
}

/* ===== Responsive ===== */
@media (max-width: 480px) {
  .compare-panel {
    width: 100%;
  }
}
/* End of Favorite Icon Styles */

/* Start of Property Compare Styles */
.pc-hero {
  background: rgb(255, 180, 64);
  color: rgb(19, 32, 53);
  padding: 113px 20px 70px;
}

.pc-hero-box {
  max-width: 1200px;
  margin: auto;
}

.pc-hero-title {
  margin: 0 0 10px;
  font-size: 36px;
  font-weight: bold;
}

.pc-hero-subtitle {
  margin: 0;
  font-size: 18px;
  font-style: italic;
  opacity: 0.9;
}

/* ================= DESKTOP ================= */
.pc-desktop {
  max-width: 1200px;
  margin: 40px auto;
}

.pc-table {
  display: grid;
  grid-template-columns: 220px repeat(3, 1fr);
}

.pc-empty-cell {
  background: #fff;
}

.pc-property-head {
  padding: 20px;
  text-align: center;
  position: relative;
}

.pc-property-head img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

.pc-remove-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #bc0000;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media (max-width: 901px) {
  .pc-remove-btn {
    top: 13px;
    right: 13px;
  }
}
.pc-property-title {
  margin: 12px 0 5px;
}

.pc-price {
  color: #FFB440;
  font-weight: bold;
}

/* ===== Rows ===== */
.pc-row {
  display: contents;
}

.pc-label,
.pc-value {
  padding: 18px;
  text-align: center;
}

.pc-label {
  text-align: left;
  font-style: italic;
}

.pc-table .pc-row:nth-of-type(odd) .pc-label,
.pc-table .pc-row:nth-of-type(odd) .pc-value {
  background: #fff5e6;
}

/* ===== Icons ===== */
.pc-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
}

.pc-yes {
  background: #4caf84;
}

.pc-no {
  background: #ff0000;
}

.pc-yes::before {
  content: "✓";
}
.pc-no::before {
  content: "✕";
}

/* ================= MOBILE ================= */
.pc-mobile {
  display: none;
}

.pc-card {
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.pc-card-img {
  position: relative;
}

.pc-card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
}

.pc-card-title {
  margin: 10px 0 4px;
}

.pc-feature {
  display: flex;
  justify-content: space-between;
  padding: 10px;
}

.pc-feature:nth-child(even) {
  background: #fff5e6;
  border-radius: 6px;
}

/* ================= Responsive ================= */
@media (max-width: 900px) {
  .pc-desktop {
    display: none;
  }

  .pc-mobile {
    display: block;
    max-width: 600px;
    margin: 20px auto;
  }
}

@media (max-width: 768px) {
  .pc-hero {
    padding: 50px 16px;
    text-align: center;
  }

  .pc-hero-title {
    font-size: 26px;
  }

  .pc-hero-subtitle {
    font-size: 15px;
  }
}
/* End of Property Compare Styles */

/* Start of Slider Styles */
.slide-container {
  max-width: 1400px;
  width: 100%;
  padding: 40px 0;
  gap: 20px;
  display: flex;
  flex-direction: column;
}
.slide-content {
  margin: 0 40px;
  overflow: hidden;
  border-radius: 15px;
}
.card {
  border-radius: 15px;
  border: solid 1px #e0ecf5;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
}

.image-content {
  display: flex;
  flex-direction: column;
}
.card-content {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}
.image-content {
  position: relative;
  row-gap: 5px;
}
article.name-and-properity-andbutton {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.name-and-properity {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.button svg {
  color: rgba(255, 179, 64, 0.63) !important;
}
.card-image {
  position: relative;
  height: 355px;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
}
.card-image .card-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.card-image img {
  transition: transform 0.4s ease;
}

.card-image:hover img {
  transform: scale(1.5);
}
.name {
  font-size: 17px;
  font-weight: 600;
  color: #131451;
}
.number-of-properity {
  font-size: 14px;
  color: #131451;
  text-align: center;
}

.card-content .button {
  border: none;
  font-size: 16px;
  color: #fff;
  padding: 17px 0;
  background: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button svg {
  color: #FFB440;
}
article.locations-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0 45px;
  justify-content: space-between;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  content: none;
}
article.locations-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.swiper-navBtn {
  color: rgb(19, 32, 53);
  transition: color 0.3s ease;
  background: rgb(254, 250, 239);
  padding: 10px 12px;
  border-radius: 7px;
}

.swiper-navBtn::before,
.swiper-navBtn::after {
  font-size: 35px;
}
.swiper-button-next {
  right: 0;
}
.swiper-button-prev {
  left: 0;
}
.swiper-pagination-bullet {
  background-color: rgb(254, 250, 239);
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background-color: rgb(255, 180, 64);
}
.swiper-button-next,
.swiper-button-prev {
  position: static;
  top: auto;
  width: auto;
  height: auto;
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .slide-content {
    margin: 0 10px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    position: absolute;
    top: 55%;
    padding: 0px 20px;
    border-radius: 50%;
    margin: 0 16px;
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  }
}
article.locations-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.locations-text h1 {
  color: #192839;
}
.locations-text p {
  color: #00305cc0;
  width: 70%;
  font-size: 14px;
}
@media screen and (max-width: 920px) {
  .locations-text p {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  article.locations-text {
    text-align: center;
  }
  .locations-text p {
    width: 100%;
  }
  article.locations-header {
    margin: 0px 10px;
  }
  .locations-text h1 {
    font-size: 24px;
  }
}
/* End of Slider Styles */
/* Start of Register Form Styles */
.register-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 16px;
}

/* Card */
.register-box {
  width: 100%;
  max-width: 900px;
  border-radius: 18px;
  padding: 40px;
  border: solid 1px #e0ecf5;
  z-index: 10;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(15px);
}

/* Logo */
.brand-holder {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.brand-holder img {
  width: 60px;
}

/* Title */
.register-box h2 {
  text-align: center;
  margin-bottom: 35px;
  font-size: 28px;
  color: #0a2540;
}

/* Form Grid */
.register-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

/* Form Group */
.input-group {
  display: flex;
  flex-direction: column;
}

.input-group label {
  font-size: 14px;
  margin-bottom: 8px;
  color: #0a2540;
  font-weight: 500;
}

/* Inputs */
.input-group input,
.input-group select {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #e3ebf5;
  background: rgb(254, 250, 239);
  font-size: 15px;
  outline: none;
}

.input-group input:focus,
.input-group select:focus {
  border-color: rgb(255, 180, 64);
  background: #fff;
}
.pin-row input {
  text-align: center;
  font-size: 1.2rem;
}
.pin-row input::-webkit-outer-spin-button,
.pin-row input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.pin-row input[type="number"] {
  -moz-appearance: textfield;
}
button#otpResend {
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
}
/* Button */
.register-btn {
  grid-column: 1 / -1;
  margin-top: 15px;
  padding: 16px;
  border-radius: 12px;
  border: none;
  background: rgb(255, 180, 64);
  color: rgb(19, 32, 53);
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
  .register-form {
    grid-template-columns: 1fr;
  }

  .register-box {
    padding: 30px 22px;
  }
}
/* End of Register Form Styles */

/* Start of Property Cards Styles */
section.properties {
  background: rgb(254, 250, 239);
  padding: 50px 50px;
}
@media (max-width: 768px) {
  section.properties {
    padding: 40px 20px;
  }
  .intro-property p {
    max-width: 100%;
  }
}
.container {
  padding-top: 20px;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(283px, 1fr));
  gap: 24px;
}
.intro-property {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.intro-property h2 {
  margin-bottom: 0;
}
.intro-property p {
  max-width: 50%;
}
@media (max-width: 1291px) {
  .intro-property p {
    max-width: 65%;
  }
}
@media (max-width: 926px) {
  .intro-property p {
    max-width: 87%;
    font-size: 14px;
  }
}
.property-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s;
  padding: 15px;
}
.property-card:hover {
  transform: translateY(-8px);
}
.property-card a {
  text-decoration: none;
  color: inherit;
}
.property-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}
.badge {
  position: absolute;
  top: 25px;
  left: 23px;
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 8px;
  color: #fff;
  z-index: 10;
}
.swiper {
  border-radius: 12px;
}
.verified {
  background: #22c55e;
}
.new {
  background: #ef4444;
}
.booked {
  background: rgb(255, 180, 64);
}
.content-property {
  padding: 5px 0 0 0;
}
span.label.property-type.property-cats {
  color: rgb(255, 180, 64);
  background: color-mix(in srgb, rgb(255, 180, 64), transparent 85%);
  padding: 5px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
}
.content-property h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #192839;
  padding-top: 5px;
}
.content-property h3:hover {
  color: rgb(255, 180, 64);
}
.content-property article {
  color: color-mix(in srgb, #00305c, transparent 30%) !important;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 10px 0;
}

.content-property article span svg {
  display: flex;
  align-items: end;
}
.content-property article p {
  margin: 0;
}
.info {
  display: flex;
  font-size: 14px;
  margin: 10px 0;
  justify-content: space-between;
}
.info span i {
  padding: 5px 4px;
  border-radius: 50%;
  color: color-mix(in srgb, #00305c, transparent 30%);
  background: #ecf3fa;
}
article.price-and-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.price {
  font-size: 18px;
  font-weight: bold;
  margin-left: -3px;
  color: rgb(255, 180, 64);
  gap: 5px;
  display: flex;
  align-items: center;
}
.fa-star {
  color: #ffcc00;
  margin-left: 2px;
}
.place-star {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
a.btn-view {
  background: rgb(255, 180, 64);
  padding: 6px 15px;
  border-radius: 4px;
  font-weight: 500;
  color: rgb(19, 32, 53);
}

div.btn-more {
  text-align: center;
  align-items: center;
  border-radius: 12px;
}
.btn.btn-primary.btn-lg {
    display: flex;
    justify-content: center;
    margin: 20px auto;
    padding: 11px;
    width: 200px;
    background: rgb(255, 180, 64);
    align-items: center;
    text-align: center;
    font-weight: 500;
    color: #f4f7fb;
    /* border-radius: 8px; */
    text-decoration: none;
}
.split-btn {
  position: relative;
  display: inline-block;
  padding: 12px 32px;
  font-size: 18px;
  margin: 20px auto;
  font-weight: 500;
  text-decoration: none;
  color: #f4f7fb;
  overflow: hidden;
  border-radius: 6px;
  background: transparent;
  border: 2px solid rgb(255, 180, 64);
  letter-spacing: 0.5px;
}

/* النص فوق الخلفية */
.split-btn span {
  position: relative;
  z-index: 3;
}

/* نصين الخلفية */
.split-btn::before,
.split-btn::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: rgb(255, 180, 64);
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.18, 1);
}

/* الشمال */
.split-btn::before {
  left: 0;
  transform: translateX(0);
}

/* اليمين */
.split-btn::after {
  right: 0;
  transform: translateX(0);
}

/* Hover الحركة */
.split-btn:hover::before {
  transform: translateX(-100%);
}

.split-btn:hover::after {
  transform: translateX(100%);
}

/* لون النص بعد الفتح */
.split-btn:hover span {
  color: rgb(255, 180, 64);
}

/*  */

/* Start Process Section */

.process-section {
  padding: 80px 20px;
  text-align: center;
}

.process-wrapper {
  max-width: 1200px;
  margin: auto;
}

.process-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #192839;
}

.process-desc {
  max-width: 720px;
  margin: 0 auto 60px;
  color: #40566d;
  font-size: 15px;
  line-height: 1.7;
}

.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.process-card {
  max-width: 300px;
}

.process-icon {
  width: 90px;
  height: 90px;
  margin: auto;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-icon svg {
  width: 40px;
  height: 40px;
  fill: currentColor;
  transform: rotate(-130deg);
}
.process-icon svg.search-swap {
  width: 40px;
  height: 40px;
}
.icon-green {
  background: #e8f8f1;
  color: #29cf8d;
  transform: rotate(130deg);
  border: rgba(15, 202, 152, 0.3) solid 1px;
}

.icon-orange {
  background: rgba(255, 143, 0, 0.1);
  color: #ff8f00;
  transform: rotate(130deg);
  border: rgba(255, 143, 0, 0.3) solid 1px;
}

.icon-blue {
  background: rgb(13 110 253 / 10%);
  color: #0d6efd;
  transform: rotate(130deg);
  border: rgb(13 110 253 / 10%) solid 1px;
}

.process-card h3 {
  font-size: 17px;
  margin: 20px 0 10px;
  color: #192839;
}

.process-card p {
  font-size: 13px;
  color: #40566d;
  line-height: 1.6;
}

.step-arrow {
  font-size: 28px;
  color: rgb(255, 180, 64);
  margin-top: -90px;
}
.process-steps {
  display: flex;
  align-items: center;
}

.process-card {
  transition:
    transform 0.8s ease,
    opacity 0.8s ease;
}

/* حركات السواب */
.move-right {
  transform: translateX(220%);
}

.move-left {
  transform: translateX(-220%);
}
.search-inner {
  opacity: 0;
  transform: scale(0.6);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.search-inner.active {
  opacity: 1;
  transform: scale(1);
}
/* Responsive */
@media (max-width: 992px) {
  .process-steps {
    flex-direction: column;
  }

  .step-arrow {
    display: none;
  }

  .process-card {
    max-width: 450px;
  }

  .process-card p {
    font-size: 16px;
  }

  .process-desc {
    font-size: 17px;
  }
}

@media (max-width: 992px) {
  .process-card p {
    font-size: 14px;
  }

  .process-desc {
    font-size: 15px;
  }
}
/* End */

/* Start */
:root {
  --cycle: 25s; /* مدة الدورة كلها */
}

section.painter {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

/* ===== BACKGROUNDS ===== */
section.painter .ss-bgLayer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  opacity: 0;
  /* ✅ تغيير ناعم (واحدة واحدة) */
  transition: opacity 1.6s ease-in-out;
  z-index: 0;
}

/* ===== TREES ===== */
section.painter .ss-treeLayer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  opacity: 0;
  /* ✅ تغيير ناعم (بعد الخلفية بشوية) */
  transition: opacity 1.2s ease-in-out;
  z-index: 4;
}

/* ===== BOY (two images swap) ===== */
.ss-rider {
  position: absolute;
  top: 44%;
  width: 450px;
  height: auto;
  transform: translateY(-50%);
  scale: 0.65;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  /* ✅ تغيير ناعم للولد */
  transition: opacity 0.6s ease-in-out;
}
@media (max-width: 1500px) {
  .ss-rider {
    top: 42%;
    width: 450px;
  }
}
@media (max-width: 1365px) {
  .ss-rider {
    top: 38%;
    width: 430px;
  }
}
@media (max-width: 1230px) {
  .ss-rider {
    top: 40%;
    width: 400px;
  }
}
@media (max-width: 1130px) {
  .ss-rider {
    top: 43%;
    width: 360px;
  }
}
@media (max-width: 1030px) {
  .ss-rider {
    top: 39%;
  }
}
@media (max-width: 900px) {
  .ss-rider {
    top: 39%;
  }
}

/* صيف */
.ss-rider--summer {
  animation: summerRide var(--cycle) linear infinite;
}

/* شتاء */
.ss-rider--winter {
  animation: winterRide var(--cycle) linear infinite;
}

/* ====== حركة الصيف ====== */
@keyframes summerRide {
  0% {
    transform: translate(110vw, -50%) rotateY(0deg) scale(0.65);
    opacity: 1;
  }

  20% {
    transform: translate(-120vw, -50%) rotateY(0deg) scale(0.65);
    opacity: 1;
  }

  25% {
    transform: translate(-120vw, -50%) rotateY(180deg) scale(0.65);
    opacity: 1;
  }

  45% {
    transform: translate(110vw, -50%) rotateY(180deg) scale(0.65);
    opacity: 1;
  }

  50% {
    transform: translate(110vw, -50%) rotateY(180deg) scale(0.65);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* ====== حركة الشتاء ====== */
@keyframes winterRide {
  0%,
  49% {
    opacity: 0;
    transform: translate(110vw, -50%) rotateY(0deg) scale(0.65);
  }

  50% {
    opacity: 1;
    transform: translate(110vw, -50%) rotateY(0deg) scale(0.65);
  }

  70% {
    transform: translate(-120vw, -50%) rotateY(0deg) scale(0.65);
    opacity: 1;
  }

  75% {
    transform: translate(-120vw, -50%) rotateY(180deg) scale(0.65);
    opacity: 1;
  }

  95% {
    transform: translate(110vw, -50%) rotateY(180deg) scale(0.65);
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(110vw, -50%) rotateY(180deg) scale(0.65);
  }
}

/* ===== SEASON SWAP (نعمل الخلفية تبدأ قبل الشجر شوية) ===== */
.ss-bgLayer.ss-bg--summer {
  animation: bgSummer var(--cycle) linear infinite;
}
.ss-bgLayer.ss-bg--winter {
  animation: bgWinter var(--cycle) linear infinite;
}

.ss-treeLayer.ss-tree--s {
  animation: treesSummer var(--cycle) linear infinite;
}
.ss-treeLayer.ss-tree--w {
  animation: treesWinter var(--cycle) linear infinite;
}

/* ✅ الخلفية تبدأ تتحول بدري شوية (48%) */
@keyframes bgSummer {
  0%,
  47% {
    opacity: 1;
  }
  48%,
  100% {
    opacity: 0;
  }
}
@keyframes bgWinter {
  0%,
  47% {
    opacity: 0;
  }
  48%,
  100% {
    opacity: 1;
  }
}

/* ✅ الشجر يتحول عند 50% */
@keyframes treesSummer {
  0%,
  46% {
    opacity: 1;
  }
  47%,
  100% {
    opacity: 0;
  }
}

@keyframes treesWinter {
  0%,
  46% {
    opacity: 0;
  }
  47%,
  100% {
    opacity: 1;
  }
}

@keyframes leafFall {
  0% {
    opacity: 0;
    top: -10%;
    transform: translateX(20px) rotate(0deg);
  }
  10% {
    opacity: 1;
  }
  20% {
    transform: translateX(-20px) rotate(45deg);
  }
  40% {
    transform: translateX(-20px) rotate(90deg);
  }
  60% {
    transform: translateX(20px) rotate(180deg);
  }
  80% {
    transform: translateX(-20px) rotate(45deg);
  }
  100% {
    top: 110%;
    transform: translateX(20px) rotate(225deg);
  }
}

/* ===== RAIN CONTAINER ===== */
.ss-rainWrap {
  position: absolute;
  inset: 0;
  pointer-events: none;

  /* خليه فوق الشجر عشان تشوفه */
  z-index: 6;

  /* افتراضيًا مخفي */
  opacity: 0;
  transition: opacity 1.2s ease-in-out;

  /* يظهر بس في الشتاء */
  animation: rainSeason var(--cycle) linear infinite;
}

@keyframes rainSeason {
  0%,
  47% {
    opacity: 0;
  } /* صيف */
  52%,
  100% {
    opacity: 1;
  } /* شتاء (يظهر تدريجيًا) */
}

.ss-rainLayer {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.ss-rainLayer--back {
  display: none;
  z-index: 1;
  opacity: 0.45;
  filter: blur(0.2px);
  transform: translateY(40px) scale(0.98);
}

article.ss-enableBackRain .ss-rainLayer--back {
  display: block;
}

/* ===== DROP ===== */
.ss-rainDrop {
  position: absolute;
  bottom: 100%;
  width: 14px;
  height: 140px;
  animation-name: rain-fall;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
}

@keyframes rain-fall {
  0% {
    transform: translateY(0vh);
  }
  80% {
    transform: translateY(92vh);
  }
  100% {
    transform: translateY(92vh);
  }
}

.ss-rainStem {
  width: 1px;
  height: 65%;
  margin-left: 7px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.35)
  );
  animation-name: rain-stem-fade;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes rain-stem-fade {
  0%,
  65% {
    opacity: 1;
  }
  80%,
  100% {
    opacity: 0;
  }
}

/* ===== SPLASH ===== */
.ss-rainSplash {
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: 18px;
  height: 10px;
  transform: translateX(-50%) scale(0);
  border-radius: 50%;
  opacity: 0;

  background: radial-gradient(
    closest-side,
    rgba(255, 255, 255, 0.35),
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0)
  );

  animation-name: rain-splash-effect;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  filter: blur(0.2px);
}

@keyframes rain-splash-effect {
  0%,
  75% {
    transform: translateX(-50%) scale(0);
    opacity: 0;
  }
  82% {
    transform: translateX(-50%) scale(1.2, 0.8);
    opacity: 0.55;
  }
  92% {
    transform: translateX(-50%) scale(1.6, 1);
    opacity: 0.25;
  }
  100% {
    transform: translateX(-50%) scale(2.2, 1.1);
    opacity: 0;
  }
}
/* End  */
/* Start of Footer Styles */
.footer {
  background: rgb(19, 32, 53);
  color: #cbd5e1;
}

/* Start  */
.footer-cta {
  background: rgb(255, 180, 64);
  padding: 40px 20px;
}

.cta-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-text h2 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 8px;
}

.cta-text p {
  color: #e0f2ff;
  font-size: 16px;
}

.cta-btn {
  background: #fff;
  color: rgb(19, 32, 53);
  padding: 15px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  border: rgb(247, 171, 56) solid 5px;
}

.cta-btn:hover {
  background: rgb(255, 180, 64);
  color: #fff;
  border: #fff solid 5px;
}
/* Start  */
/* ---------- MAIN FOOTER ---------- */
.footer-main {
  padding: 60px 20px;
}

.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-col p {
  margin-bottom: 12px;
  font-size: 15px;
}

/* ---------- LOGO ---------- */
.logo {
  display: flex;
  align-items: center;
}
.logofgf{
    display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 25px;
}
.logo-icon {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 10px;
  position: relative;
      display: flex;
    align-items: center;
}

.logo h3 {
  color: #fff;
  font-size: 26px;
}

/* ---------- BOTTOM ---------- */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
}

.footer-bottom-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.footer-bottom p {
  font-size: 14px;
  color: #cbd5e1;
}

.social a {
  margin-left: 15px;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
}

.social a:hover {
  color: #fff;
}
.view-more {
  font-weight: 600;
  color: #0987f5;
}

.view-more:hover {
  text-decoration: underline;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .social a {
    margin-left: 10px;
  }
}
/* End */
@media (max-width: 1384px) {
  .rightMask {
    clip-path: polygon(55.7% 0, 100% 0, 100% 100%, 44.1% 100%);
  }
}
@media (max-width: 1086px) {
  .rightMask {
    clip-path: polygon(56.3% 0, 100% 0, 100% 100%, 43.7% 100%);
  }
}

@media (max-width: 982px) {
  .rightMask {
    clip-path: polygon(54.8% 0, 100% 0, 100% 100%, 45.4% 100%);
  }
}
@media (max-width: 862px) {
  .rightMask {
    clip-path: polygon(54.8% 0, 100% 0, 100% 100%, 44.6% 100%);
  }
}
@media (max-width: 832px) {
  .rightMask {
    clip-path: polygon(55.6% 0, 100% 0, 100% 100%, 44.6% 100%);
  }
}
@media (max-width: 733px) {
  .rightMask {
    clip-path: polygon(55.6% 0, 100% 0, 100% 100%, 43.8% 100%);
  }
}
/*  */
:root {
  --bg: #f6f2ea;
  --card: #fdfaf5;
  --card2: #fffdf9;
  --text: #1d1d1d;
  --muted: #7b7b7b;
  --line: #e8e2d9;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  --radius: 18px;
  --focus: rgba(0, 0, 0, 0.08);
}

/* body.dark {
        --bg: #0f1216;
        --card: #141a20;
        --card2: #11161b;
        --text: #eef1f5;
        --muted: #a7b0bb;
        --line: #222b34;
        --shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
        --focus: rgba(255, 255, 255, 0.08);
      } */

/* top icons just to mimic header */
.hdr-shell {
  /* position: fixed; */
  top: 14px;
  right: 18px;
  display: flex;
  gap: 14px;
  align-items: center;
  z-index: 5;
}
.hdr-ico {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 12px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    transform 0.12s ease,
    background 0.12s ease;
}
.hdr-ico:hover {
  transform: translateY(-1px);
  background: var(--card2);
}
.pfp-trigger {
  width: 45px;
  height: 45px;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid rgba(0, 0, 0, 0.08);
  background: #ddd;
  cursor: pointer;
  padding: 0;
}
.pfp-trigger svg{
  width: 45px;
  height: 100%;
}
body.dark .pfp-trigger {
  border-color: rgba(255, 255, 255, 0.12);
}
.pfp-trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* dropdown */
.pfp-wrap {
  position: relative;
}

.pfp-menu {
  position: absolute;
  top: 64px;
  right: -40px;
  width: 320px;
  background: linear-gradient(180deg, var(--card2), var(--card));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 10px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.pfp-menu.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.pfp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  cursor: pointer;
  user-select: none;
  transition:
    background 0.12s ease,
    transform 0.12s ease;
}
.pfp-item:hover {
  background: var(--focus);
}
.pfp-item:active {
  transform: scale(0.995);
}

.pfp-badge {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
}
body.dark .pfp-badge {
  background: rgba(255, 255, 255, 0.04);
}

.pfp-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1px;
}
.pfp-label a{
  text-decoration: none;
  transition: color 0.12s ease;
  color: var(--text);
}
.pfp-rule {
  height: 1px;
  background: var(--line);
  margin: 10px 6px;
  border-radius: 999px;
}

/* dark mode row */
.dm-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* switch */
.dm-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid var(--line);
  transition: background 0.15s ease;
  flex: 0 0 auto;
}
body.dark .dm-toggle {
  background: rgba(255, 255, 255, 0.12);
}
.dm-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
  transition: left 0.16s ease;
}
.dm-toggle.is-on {
  background: #2f7dff33;
}
.dm-toggle.is-on::after {
  left: 22px;
  background: #ffffff;
}

.pfp-btn {
  width: 100%;
  margin-top: 10px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  border-radius: 14px;
  padding: 12px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 800;
  transition:
    background 0.12s ease,
    transform 0.12s ease;
}
.pfp-btn:hover {
  background: var(--focus);
}
.pfp-btn:active {
  transform: scale(0.995);
}

/* simple SVG icons */
svg {
  display: block;
}

/* small responsiveness */
@media (max-width: 420px) {
  
  .pfp-menu {
    width: 92vw;
  }
}
/*  */
/* 
      :root {
        --bg: #f4f3ef;
        --surface: #ffffff;
        --dark: #1a1a1a;
        --muted: #8a8880;
        --border: #e0ddd8;
        --accent: #2d5a27;
        --accent-light: #edf4ec;
        --tag-bg: #1a1a1a;
        --tag-text: #fff;
        --danger: #c0392b;
        --sidebar-w: 260px;

        --cal-reciprocal-solid: #f5a623;
        --cal-reciprocal-bg: rgba(245, 166, 35, 0.14);
        --cal-reciprocal-text: #fff;
        --cal-guestpoints-solid: #4a90d9;
        --cal-guestpoints-bg: rgba(74, 144, 217, 0.14);
        --cal-guestpoints-text: #fff;
        --cal-anytype-solid: #4caf50;
        --cal-anytype-bg: rgba(76, 175, 80, 0.14);
        --cal-anytype-text: #fff;
        --cal-unavailable-solid: #b0bec5;
        --cal-unavailable-bg: rgba(176, 190, 197, 0.14);
        --cal-unavailable-text: #333;
        --cal-occupied-solid: #ef7b6b;
        --cal-occupied-bg: rgba(239, 123, 107, 0.14);
        --cal-occupied-text: #fff;
      }

      .xr7-type-reciprocal { --cal-solid: var(--cal-reciprocal-solid); --cal-bg: var(--cal-reciprocal-bg); --cal-text: var(--cal-reciprocal-text); }
      .xr7-type-guestpoints { --cal-solid: var(--cal-guestpoints-solid); --cal-bg: var(--cal-guestpoints-bg); --cal-text: var(--cal-guestpoints-text); }
      .xr7-type-anytype { --cal-solid: var(--cal-anytype-solid); --cal-bg: var(--cal-anytype-bg); --cal-text: var(--cal-anytype-text); }
      .xr7-type-unavailable { --cal-solid: var(--cal-unavailable-solid); --cal-bg: var(--cal-unavailable-bg); --cal-text: var(--cal-unavailable-text); }
      .xr7-type-occupied { --cal-solid: var(--cal-occupied-solid); --cal-bg: var(--cal-occupied-bg); --cal-text: var(--cal-occupied-text); }

      .q9v.vb2-bg { background: var(--cal-bg) !important; border-radius: 0; }
      .q9v.vb2-bg-s { background: linear-gradient(to right, transparent 50%, var(--cal-bg) 50%) !important; }
      .q9v.vb2-bg-e { background: linear-gradient(to left, transparent 50%, var(--cal-bg) 50%) !important; }
      .q9v.vb2-ks .n4w,
      .q9v.vb2-ke .n4w,
      .q9v.vb2-kx .n4w {
        background: var(--cal-solid) !important;
        color: var(--cal-text) !important;
        font-weight: 600;
        border-radius: 50%;
        width: 32px; height: 32px;
        display: flex; align-items: center; justify-content: center;
      }
      .q9v.vb2-ks .n4w,
      .q9v.vb2-ke .n4w { position: relative; z-index: 2; }

      

      .zp1 {
        width: var(--sidebar-w);
        background: var(--dark);
        color: #fff;
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 12px; left: 12px; bottom: 12px;
        overflow-y: auto;
        z-index: 100;
        transition: transform 0.3s ease;
        border-radius: 20px;
      }

      .zp1-hd {
        padding: 28px 24px 20px;
        font-family: "Syne", sans-serif;
        font-weight: 800; font-size: 20px;
        letter-spacing: -0.5px;
        border-bottom: 1px solid #333;
        display: flex; align-items: center; gap: 10px;
      }
      .zp1-hd span {
        width: 32px; height: 32px;
        background: var(--accent);
        border-radius: 8px;
        display: grid; place-items: center; font-size: 14px;
      }

      .zp1-grp {
        padding: 20px 16px 6px;
        font-size: 10px; font-weight: 600;
        letter-spacing: 1.5px; color: #555;
        text-transform: uppercase;
      }

      .zp1-lnk {
        display: flex; align-items: center; gap: 10px;
        padding: 10px 16px;
        border-radius: 8px;
        margin: 2px 8px;
        font-size: 14px; color: #aaa;
        cursor: pointer;
        transition: all 0.2s;
        text-decoration: none;
      }
      .zp1-lnk:hover { background: #2a2a2a; color: #fff; }
      .zp1-lnk.m9a { background: var(--accent); color: #fff; }
      .f3k { width: 18px; height: 18px; opacity: 0.7; flex-shrink: 0; }
      .zp1-lnk.m9a .f3k { opacity: 1; }

      .w5r {
        margin-left: var(--sidebar-w);
        flex: 1;
        padding: 40px 32px;
        max-width: 100%;
      }

      .t2h {
        display: flex; align-items: center;
        justify-content: space-between;
        margin-bottom: 32px;
        flex-wrap: wrap; gap: 12px;
      }
      .t2h-ttl { font-family: "Syne", sans-serif; font-weight: 800; font-size: 28px; letter-spacing: -1px; }
      .b8c { font-size: 13px; color: var(--muted); margin-top: 4px; }
      .b8c span { color: var(--dark); font-weight: 500; }

      .k1z {
        display: flex; gap: 0;
        border-bottom: 2px solid var(--border);
        margin-bottom: 32px;
        overflow-x: auto;
        scrollbar-width: none;
      }
      .k1z::-webkit-scrollbar { display: none; }

      .k1z-itm {
        padding: 12px 20px;
        font-size: 13px; font-weight: 500;
        color: var(--muted);
        cursor: pointer;
        border-bottom: 2px solid transparent;
        margin-bottom: -2px;
        white-space: nowrap;
        transition: all 0.2s;
        user-select: none;
      }
      .k1z-itm:hover { color: var(--dark); }
      .k1z-itm.m9a { color: var(--accent); border-bottom-color: var(--accent); font-weight: 600; }
      .p7n { display: none; }
      .p7n.m9a { display: block; }

      .r4s {
        background: var(--surface);
        border-radius: 16px;
        padding: 28px;
        margin-bottom: 20px;
        border: 1px solid var(--border);
      }

      .r4s-ttl {
        font-family: "Syne", sans-serif;
        font-weight: 700; font-size: 18px;
        margin-bottom: 24px;
        display: flex; align-items: center; gap: 8px;
      }
      .r4s-ttl::before {
        content: "";
        width: 4px; height: 20px;
        background: var(--accent);
        border-radius: 2px;
      }

      .g9d { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
      .g9d.tw { grid-template-columns: 1fr 1fr; }
      .g9d.on { grid-template-columns: 1fr; }
      .h6m { display: flex; flex-direction: column; gap: 6px; }
      .h6m.fl { grid-column: 1 / -1; }

      label {
        font-size: 12px; font-weight: 600;
        color: var(--muted);
        text-transform: uppercase;
        letter-spacing: 0.8px;
      }

      input[type="text"],
      input[type="number"],
      input[type="email"],
      input[type="tel"],
      select,
      textarea {
        width: 100%;
        border-radius: 10px;
        padding: 11px 14px;
        font-family: "DM Sans", sans-serif;
        font-size: 14px;
        color: var(--dark);
        background: var(--bg);
        transition: border-color 0.2s, background 0.2s;
        outline: none;
        appearance: none;
      }
      input:focus, select:focus, textarea:focus {
        border-color: var(--accent);
        background: #fff;
      }
      textarea { resize: vertical; min-height: 130px; line-height: 1.6; }

      .vz8-wrap {
        display: flex; align-items: center; gap: 32px;
        margin-bottom: 32px; padding-bottom: 32px;
        border-bottom: 1px solid var(--border);
      }
      .vz8-ring { position: relative; flex-shrink: 0; }
      .vz8-circ {
        width: 110px; height: 110px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--accent), #4a9e42);
        display: flex; align-items: center; justify-content: center;
        font-family: "Syne", sans-serif; font-size: 38px; font-weight: 800; color: #fff;
        overflow: hidden; border: 3px solid var(--border); transition: border-color 0.2s;
      }
      .vz8-circ:hover { border-color: var(--accent); }
      .vz8-circ img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
      .vz8-pen {
        position: absolute; bottom: 2px; right: 2px;
        width: 32px; height: 32px; background: var(--dark); color: #fff;
        border: none; border-radius: 50%; cursor: pointer;
        display: grid; place-items: center;
        transition: background 0.2s, transform 0.15s;
        box-shadow: 0 2px 8px rgba(0,0,0,0.25);
      }
      .vz8-pen:hover { background: var(--accent); transform: scale(1.1); }
      .vz8-meta h3 { font-family: "Syne", sans-serif; font-weight: 700; font-size: 20px; margin-bottom: 6px; color: var(--dark); }
      .vz8-meta p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
      .vz8-btn {
        display: inline-flex; align-items: center; gap: 7px;
        padding: 9px 18px; background: #fff; border: 1.5px solid var(--border);
        border-radius: 9px; font-family: "DM Sans", sans-serif;
        font-size: 13px; font-weight: 600; color: var(--dark); cursor: pointer; transition: all 0.2s;
      }
      .vz8-btn:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }

      .e5q { display: flex; gap: 12px; margin-top: 4px; }
      .e5q-opt {
        flex: 1; display: flex; align-items: center; gap: 12px;
        padding: 14px 18px; border: 1.5px solid var(--border);
        border-radius: 12px; cursor: pointer; transition: all 0.2s;
        background: #fff; user-select: none;
      }
      .e5q-opt:hover { border-color: #aac; background: #fafafa; }
      .e5q-opt.m9a { border-color: var(--accent); background: var(--accent-light); }
      .e5q-flg { font-size: 26px; line-height: 1; flex-shrink: 0; }
      .e5q-txt strong { display: block; font-size: 14px; font-weight: 700; font-family: "Syne", sans-serif; color: var(--dark); margin-bottom: 2px; }
      .e5q-txt span { font-size: 12px; color: var(--muted); }
      .e5q-opt.m9a .e5q-txt strong { color: var(--accent); }
      .e5q-dot {
        margin-left: auto; width: 20px; height: 20px;
        border: 2px solid var(--border); border-radius: 50%;
        display: grid; place-items: center; flex-shrink: 0; transition: all 0.15s;
      }
      .e5q-opt.m9a .e5q-dot { border-color: var(--accent); background: var(--accent); }
      .e5q-opt.m9a .e5q-dot::after { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #fff; }

      .j2x-row { display: flex; gap: 10px; }
      .j2x-sel {
        width: 110px; flex-shrink: 0;
        border: 1.5px solid var(--border); border-radius: 10px;
        padding: 11px 10px; font-family: "DM Sans", sans-serif;
        font-size: 14px; color: var(--dark); background: var(--bg);
        cursor: pointer; outline: none; appearance: none; -webkit-appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%238a8880' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
        background-repeat: no-repeat; background-position: right 10px center; padding-right: 28px;
        transition: border-color 0.2s, background 0.2s;
      }
      .j2x-sel:focus { border-color: var(--accent); background-color: #fff; }

      .o3b { display: none; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--accent); }
      .o3b.m9a { display: flex; }

      .d7w {
        border: 2px dashed #e74c3c; border-radius: 16px;
        background: #fafafa; padding: 48px 24px;
        text-align: center; cursor: pointer; transition: all 0.2s; margin-bottom: 20px;
      }
      .d7w:hover, .d7w.ov { border-color: var(--accent); background: var(--accent-light); }
      .d7w svg { margin-bottom: 14px; }
      .d7w-ttl { font-family: "Syne", sans-serif; font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
      .d7w-sub { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
      .d7w-btn {
        background: #fff; border: 2px solid var(--dark); border-radius: 10px; padding: 10px 28px;
        font-family: "DM Sans", sans-serif; font-size: 14px; font-weight: 700;
        cursor: pointer; transition: all 0.2s; color: var(--dark);
      }
      .d7w-btn:hover { background: var(--dark); color: #fff; }

      #c6t { font-size: 14px; font-weight: 600; color: var(--accent); }
      #c6t.wn { color: #c77c00; }

      .s8g { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
      .l4p {
        aspect-ratio: 1; border: 2px dashed #c8c8d0; border-radius: 12px;
        background: #f5f5f7; display: flex; flex-direction: column;
        align-items: center; justify-content: center;
        gap: 6px; cursor: pointer; transition: all 0.2s;
        position: relative; overflow: hidden; font-size: 12px; color: var(--muted);
      }
      .l4p:hover { border-color: var(--accent); background: var(--accent-light); color: var(--accent); }
      .l4p.fl { border: none; cursor: default; }
      .l4p.fl img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
      .l4p-rm {
        position: absolute; top: 5px; right: 5px;
        background: rgba(0,0,0,0.6); color: #fff; border: none; border-radius: 50%;
        width: 22px; height: 22px; cursor: pointer; font-size: 13px; display: grid; place-items: center;
      }
      .l4p-rm:hover { background: #c0392b; }

      .mx4 { position: relative; z-index: 10; }
      .mx4-box {
        display: flex; align-items: center; gap: 10px;
        border: 2px solid #3b82f6; border-radius: 10px; padding: 10px 14px;
        background: #fff; box-shadow: 0 2px 12px rgba(59,130,246,0.15);
      }
      .mx4-box input { border: none; background: transparent; outline: none; font-size: 14px; color: var(--dark); flex: 1; padding: 0; border-radius: 0; }
      .mx4-clr { background: none; border: none; font-size: 18px; color: var(--muted); cursor: pointer; }
      .mx4-sug {
        position: absolute; top: calc(100% + 4px); left: 0; right: 0;
        background: #fff; border: 1.5px solid var(--border); border-radius: 10px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        list-style: none; max-height: 260px; overflow-y: auto;
        display: none; z-index: 999;
      }
      .mx4-sug.sh { display: block; }
      .mx4-sug li { display: flex; align-items: center; gap: 10px; padding: 12px 16px; font-size: 14px; cursor: pointer; color: var(--dark); border-bottom: 1px solid #f0f0f0; }
      .mx4-sug li:hover { background: #f5f5f7; }
      .mx4-tip {
        position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
        background: rgba(255,255,255,0.95); border-radius: 10px;
        padding: 10px 18px; font-size: 13px; font-weight: 500;
        box-shadow: 0 4px 16px rgba(0,0,0,0.12);
        white-space: nowrap; pointer-events: none; z-index: 900; display: none;
      }
      .mx4-tip.sh { display: block; }
      .mx4-pick {
        display: flex; align-items: center; gap: 8px;
        margin-top: 12px; padding: 10px 14px;
        background: var(--accent-light); border-radius: 8px;
        font-size: 13px; color: var(--accent); font-weight: 500;
      }

      .u2f-sub { font-size: 13px; color: var(--muted); margin-bottom: 16px; margin-top: -12px; }
      .u2f-sub strong { color: var(--dark); }
      .u2f-grd { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
      .y3c {
        display: flex; align-items: flex-start; gap: 14px;
        padding: 16px 18px; border: 1.5px solid var(--border);
        border-radius: 12px; cursor: pointer; transition: all 0.2s;
        background: #fff; user-select: none;
      }
      .y3c:hover { border-color: #aac; background: #fafafa; }
      .y3c.m9a { border-color: #3b82f6; background: #eff6ff; }
      .y3c.dx { opacity: 0.45; cursor: not-allowed; pointer-events: none; }
      .y3c-ic { flex-shrink: 0; margin-top: 2px; color: #444; }
      .y3c.m9a .y3c-ic { color: #2563eb; }
      .y3c-tx { display: flex; flex-direction: column; gap: 4px; }
      .y3c-tx strong { font-size: 14px; font-weight: 600; color: var(--dark); font-family: "Syne", sans-serif; }
      .y3c-tx span { font-size: 12px; color: var(--muted); line-height: 1.5; }
      .y3c.m9a .y3c-tx strong { color: #1d4ed8; }
      .u2f-tgl {
        background: none; border: none; font-size: 13px; font-weight: 600;
        color: var(--dark); cursor: pointer; text-decoration: underline;
        text-underline-offset: 2px; padding: 4px 0; font-family: "DM Sans", sans-serif;
      }
      .u2f-tgl:hover { color: #3b82f6; }

      .v6p-lbl { font-family: "Syne", sans-serif; font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 12px; margin-top: 4px; }
      .v6p-grd { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; }
      .a9w { display: flex; gap: 12px; align-items: stretch; margin-bottom: 8px; }
      .a9w input { flex: 1; }
      .a9w-sel {
        width: 90px; flex-shrink: 0;
        border: 1.5px solid var(--border); border-radius: 10px;
        padding: 11px 10px; font-family: "DM Sans", sans-serif;
        font-size: 14px; color: var(--dark); background: var(--bg);
        cursor: pointer; outline: none; appearance: none; -webkit-appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%238a8880' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
        background-repeat: no-repeat; background-position: right 10px center; padding-right: 28px;
      }

      .z6b {
        display: flex; justify-content: space-between;
        align-items: center; margin-top: 28px;
        flex-wrap: wrap; gap: 12px;
      }
      .q4e {
        display: inline-flex; align-items: center; gap: 8px;
        padding: 12px 24px; border-radius: 10px;
        font-family: "DM Sans", sans-serif; font-size: 14px; font-weight: 600;
        cursor: pointer; border: none; transition: all 0.2s;
      }
      .q4e-pr { background: var(--accent); color: #fff; }
      .q4e-pr:hover { background: #245020; transform: translateY(-1px); }
      .q4e-sc { background: transparent; color: var(--dark); border: 1.5px solid var(--border); }
      .q4e-sc:hover { background: var(--bg); }
      .q4e-dg { background: transparent; color: var(--danger); border: 1.5px solid #f5c6c2; }
      .q4e-dg:hover { background: #fdf0ef; }

      .i8v { display: flex; gap: 6px; }
      .i8v-d { width: 8px; height: 8px; border-radius: 50%; background: var(--border); transition: all 0.3s; }
      .i8v-d.m9a { background: var(--accent); width: 24px; border-radius: 4px; }

      .c3n-row { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 16px; }
      .c3n-inf { display: flex; align-items: flex-start; gap: 14px; flex: 1; }
      .c3n-ic { flex-shrink: 0; margin-top: 2px; color: var(--dark); opacity: 0.7; }
      .c3n-lbl { font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 3px; }
      .c3n-sub { font-size: 12px; color: var(--muted); line-height: 1.5; }
      .c3n-ctl { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
      .c3n-btn {
        background: none; border: none; cursor: pointer; color: var(--dark);
        display: grid; place-items: center; padding: 0;
        transition: opacity 0.2s, transform 0.15s; opacity: 0.5;
      }
      .c3n-btn:hover { opacity: 1; transform: scale(1.1); }
      .c3n-btn:disabled { opacity: 0.2; cursor: not-allowed; transform: none; }
      .c3n-val { font-size: 16px; font-weight: 600; color: var(--dark); min-width: 20px; text-align: center; }
      .c3n-hr { border: none; border-top: 1px solid var(--border); margin: 0; }

      .f9a-ttl { font-family: "Syne", sans-serif; font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 16px; }
      .f9a-grd { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 12px; }
      .f9a-itm {
        display: flex; flex-direction: column; align-items: center; justify-content: center;
        gap: 10px; padding: 20px 12px 16px;
        border: 1.5px solid var(--border); border-radius: 14px;
        cursor: pointer; transition: all 0.2s; background: #fff;
        user-select: none; text-align: center;
      }
      .f9a-itm:hover { border-color: #3b82f6; background: #f0f7ff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(59,130,246,0.1); }
      .f9a-itm.ck { border-color: #3b82f6; background: #eff6ff; }
      .f9a-ic { color: var(--dark); opacity: 0.75; transition: all 0.2s; line-height: 0; }
      .f9a-itm:hover .f9a-ic, .f9a-itm.ck .f9a-ic { opacity: 1; }
      .f9a-itm.ck .f9a-ic { color: #2563eb; }
      .f9a-nm { font-size: 12px; font-weight: 500; color: var(--dark); line-height: 1.4; }
      .f9a-itm.ck .f9a-nm { color: #2563eb; font-weight: 600; }

      .r2m-grd { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
      .r2m-itm {
        display: flex; align-items: flex-start; gap: 14px;
        padding: 20px; border: 1.5px solid var(--border);
        border-radius: 14px; cursor: pointer; transition: all 0.2s;
        background: #fff; user-select: none;
      }
      .r2m-itm:hover { border-color: #3b82f6; background: #f8fbff; }
      .r2m-itm.ck { border-color: #3b82f6; background: #eff6ff; }
      .r2m-ic { flex-shrink: 0; margin-top: 2px; color: var(--dark); opacity: 0.7; }
      .r2m-itm.ck .r2m-ic { opacity: 1; color: #2563eb; }
      .r2m-tx { display: flex; flex-direction: column; gap: 6px; }
      .r2m-tx strong { font-size: 14px; font-weight: 700; color: var(--dark); font-family: "Syne", sans-serif; }
      .r2m-tx span { font-size: 12px; color: var(--muted); line-height: 1.6; }
      .r2m-itm.ck .r2m-tx strong { color: #1d4ed8; }

      .xr7-hdr { display: flex; align-items: center; justify-content: space-between; padding: 22px 28px; cursor: pointer; user-select: none; transition: background 0.15s; }
      .xr7-hdr:hover { background: #fafaf9; }
      .xr7-mg { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
      .xr7-mttl { text-align: center; font-family: "Syne", sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; color: var(--dark); margin-bottom: 16px; text-transform: uppercase; }
      .xr7-grd { display: grid; grid-template-columns: repeat(7, 1fr); gap: 1px; }
      .xr7-dow { text-align: center; font-size: 10px; font-weight: 600; color: var(--muted); letter-spacing: 0.8px; padding-bottom: 8px; text-transform: uppercase; }
      .q9v { position: relative; text-align: center; height: 38px; display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--dark); cursor: pointer; user-select: none; transition: background 0.08s ease; z-index: 1; }
      .q9v.em { pointer-events: none; cursor: default; }
      .q9v.ps { color: #ccc; pointer-events: none; }
      .q9v .n4w { position: relative; z-index: 2; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; transition: background 0.15s ease, color 0.15s ease, transform 0.12s ease; }
      .q9v:not(.ps):not(.em):not(.vb2-ks):not(.vb2-ke):not(.vb2-mm):hover .n4w { background: #e8e8e8; transform: scale(1.1); }
      .q9v.hv-rng { background: rgba(59,130,246,0.08); }
      .q9v.hv-s .n4w, .q9v.hv-e .n4w { background: #3b82f6 !important; color: #fff !important; transform: scale(1.12) !important; box-shadow: 0 2px 10px rgba(59,130,246,0.45); }
      .q9v.hv-rng .n4w { color: #1d4ed8; font-weight: 600; }
      @keyframes xrPls { 0% { box-shadow: 0 0 0 0 rgba(59,130,246,0.55); } 60% { box-shadow: 0 0 0 8px rgba(59,130,246,0); } 100% { box-shadow: 0 0 0 0 rgba(59,130,246,0); } }
      .q9v.sl-s .n4w { background: #3b82f6 !important; color: #fff !important; animation: xrPls 1.4s ease infinite; }
      .q9v.vb2-ks .n4w, .q9v.vb2-ke .n4w { color: #fff; font-weight: 600; font-size: 13px; }

      .xr7-hint { display: none; align-items: center; gap: 10px; padding: 12px 18px; background: #eff6ff; border: 1.5px solid #bfdbfe; border-radius: 12px; margin-bottom: 20px; font-size: 13px; color: #1d4ed8; font-weight: 500; animation: sd 0.25s ease; }
      .xr7-hint.sh { display: flex; }
      @keyframes sd { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
      .xr7-hint .hx-cn { margin-left: auto; background: none; border: none; cursor: pointer; font-size: 18px; color: #6b7280; line-height: 1; padding: 0 2px; }
      .xr7-hint .hx-cn:hover { color: #1d4ed8; }

      .xr7-ov { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.35); z-index: 500; align-items: center; justify-content: center; }
      .xr7-ov.sh { display: flex; }
      .xr7-md { background: #fff; border-radius: 20px; padding: 32px; width: 460px; max-width: 95vw; box-shadow: 0 20px 60px rgba(0,0,0,0.2); animation: mdIn 0.2s ease; }
      @keyframes mdIn { from { opacity: 0; transform: translateY(8px) scale(0.98); } to { opacity: 1; transform: none; } }
      .xr7-md-ttl { font-family: "Syne", sans-serif; font-weight: 700; font-size: 18px; margin-bottom: 6px; }
      .xr7-md-dt { font-size: 13px; color: var(--muted); margin-bottom: 22px; }
      .xr7-tp-opt { display: flex; align-items: center; gap: 12px; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: 12px; cursor: pointer; margin-bottom: 8px; transition: all 0.15s; }
      .xr7-tp-opt:hover { border-color: #aaa; }
      .xr7-tp-opt.m9a { border-color: #3b82f6; background: #eff6ff; }
      .xr7-tp-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
      .xr7-tp-nf strong { font-size: 14px; font-weight: 600; display: block; margin-bottom: 2px; }
      .xr7-tp-nf span { font-size: 12px; color: var(--muted); }
      .xr7-rd { margin-left: auto; width: 18px; height: 18px; border: 2px solid var(--border); border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; transition: all 0.15s; }
      .xr7-tp-opt.m9a .xr7-rd { border-color: #3b82f6; background: #3b82f6; }
      .xr7-tp-opt.m9a .xr7-rd::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #fff; }
      .xr7-slbl { font-size: 11px; font-weight: 700; letter-spacing: 1px; color: var(--muted); text-transform: uppercase; margin: 16px 0 10px; }
      .xr7-md-ac { display: flex; justify-content: flex-end; gap: 10px; margin-top: 20px; }

      .mx4-si { flex-direction: column; align-items: flex-start; padding: 10px 14px; }
      .mx4-sn { font-weight: 600; font-size: 13px; }
      .mx4-sf { font-size: 11px; color: #999; }

      .xr7-nv { grid-column: 1 / -1; display: flex; gap: 12px; justify-content: center; padding: 8px 0 4px; }
      .xr7-nv-b { flex: 1; max-width: 200px; justify-content: center; padding: 14px 24px; font-size: 14px; border-radius: 12px; border: 1.5px solid var(--dark); }

      .mx4-nr { color: #999; cursor: default; font-size: 13px; padding: 12px 16px; }
      .mx4-er { color: #c0392b; cursor: default; font-size: 13px; padding: 12px 16px; }
      #k8n.cw { color: #c77c00; }
      #k8n.ce { color: #c0392b; }

      @media (max-width: 768px) {
        .xr7-mg { grid-template-columns: 1fr; }
        .zp1 { display: none; }
        .w5r { margin-left: 0; padding: 24px 16px; }
        .g9d, .g9d.tw, .g9d.on { grid-template-columns: 1fr; }
        .t2h { flex-direction: column; align-items: flex-start; }
        .r4s { padding: 20px 16px; }
        .v6p-grd { grid-template-columns: 1fr; }
        .s8g { grid-template-columns: repeat(3, 1fr); }
        .vz8-wrap { flex-direction: column; align-items: flex-start; }
        .e5q { flex-direction: column; }
      }
      @media (max-width: 1024px) { .g9d { grid-template-columns: 1fr 1fr; } }
      @media (max-width: 480px) {
        .k1z-itm { padding: 10px 14px; font-size: 12px; }
        .f9a-grd { grid-template-columns: 1fr 1fr; }
        .s8g { grid-template-columns: repeat(2, 1fr); }
      } */
