:root {
  --azul-oscuro: #0A2540;
  --azul-medio: #1E5F9A;
  --azul-claro: #4AA3D9;
  --fondo: #EAF7FF;
  --blanco: #ffffff;
  --texto: #263445;
  --gris: #64748b;
  --borde: rgba(10, 37, 64, 0.12);
  --sombra: 0 20px 50px rgba(10, 37, 64, 0.12);
  --radio: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--fondo);
  color: var(--texto);
  line-height: 1.6;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--borde);
}

.header-content {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--azul-oscuro);
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--azul-oscuro), var(--azul-claro));
  color: var(--blanco);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  font-size: 17px;
  font-weight: 500;
}

.logo-text strong {
  font-size: 19px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  text-decoration: none;
  color: var(--azul-oscuro);
  font-weight: 700;
  font-size: 15px;
}

.nav a:hover {
  color: var(--azul-medio);
}

.nav-whatsapp {
  background: var(--azul-medio);
  color: var(--blanco) !important;
  padding: 10px 18px;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  background: var(--azul-oscuro);
  color: var(--blanco);
  border: none;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  font-size: 22px;
  cursor: pointer;
}

/* HERO */

.hero {
  padding: 88px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  color: var(--azul-medio);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 13px;
}

.hero h1,
.section-heading h2,
.about-grid h2,
.simulator-grid h2,
.contact-grid h2,
.cta-card h2 {
  color: var(--azul-oscuro);
  line-height: 1.1;
}

.hero h1 {
  font-size: clamp(38px, 5vw, 66px);
  margin-bottom: 22px;
}

.hero p {
  font-size: 20px;
  max-width: 660px;
  color: #405064;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: 800;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--azul-medio);
  color: var(--blanco);
}

.btn-primary:hover {
  background: var(--azul-oscuro);
}

.btn-secondary {
  background: var(--blanco);
  color: var(--azul-oscuro);
  border: 1px solid var(--borde);
}

.btn-light {
  background: var(--blanco);
  color: var(--azul-oscuro);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 720px;
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--borde);
  border-radius: 18px;
  padding: 18px;
}

.hero-stats strong {
  display: block;
  color: var(--azul-oscuro);
  font-size: 18px;
}

.hero-stats span {
  color: var(--gris);
  font-size: 14px;
}

.hero-card {
  min-height: 480px;
  position: relative;
}

.hero-image {
  width: 100%;
  height: 480px;
  border-radius: 36px;
  background:
    linear-gradient(rgba(10,37,64,0.2), rgba(10,37,64,0.4)),
    url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1100&q=80");
  background-size: cover;
  background-position: center;
  box-shadow: var(--sombra);
  position: relative;
  overflow: hidden;
}

.floating-card {
  position: absolute;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--sombra);
  color: var(--azul-oscuro);
}

.floating-card strong {
  display: block;
  font-size: 18px;
}

.floating-card span {
  color: var(--gris);
  font-size: 14px;
}

.card-top {
  top: 24px;
  left: 24px;
}

.card-bottom {
  right: 24px;
  bottom: 24px;
}

/* SECTIONS */

.section {
  padding: 86px 0;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

.section-heading h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 14px;
}

.section-heading p {
  color: var(--gris);
  font-size: 18px;
}

/* SERVICES */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card,
.property-card,
.simulator-card,
.contact-form {
  background: var(--blanco);
  border: 1px solid var(--borde);
  border-radius: var(--radio);
  box-shadow: 0 14px 35px rgba(10, 37, 64, 0.08);
}

.service-card {
  padding: 26px;
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--fondo);
  font-size: 26px;
  margin-bottom: 18px;
}

.service-card h3 {
  color: var(--azul-oscuro);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--gris);
  font-size: 15px;
}

/* PROPERTIES */

.properties-section {
  background: rgba(255,255,255,0.38);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
}

.tab-btn {
  border: 1px solid var(--borde);
  background: var(--blanco);
  color: var(--azul-oscuro);
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--azul-medio);
  color: var(--blanco);
}

.properties-status {
  text-align: center;
  color: var(--gris);
  margin-bottom: 24px;
  font-weight: 700;
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.property-card {
  overflow: hidden;
}

.property-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.property-badge {
  position: absolute;
  left: 16px;
  top: 16px;
  background: var(--azul-oscuro);
  color: var(--blanco);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.property-content {
  padding: 22px;
}

.property-content h3 {
  color: var(--azul-oscuro);
  margin-bottom: 8px;
  font-size: 21px;
}

.property-location {
  color: var(--gris);
  margin-bottom: 12px;
  font-size: 15px;
}

.property-price {
  font-size: 22px;
  font-weight: 900;
  color: var(--azul-medio);
  margin-bottom: 12px;
}

.property-description {
  color: var(--gris);
  font-size: 15px;
  margin-bottom: 18px;
}

.property-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.property-meta span {
  background: var(--fondo);
  color: var(--azul-oscuro);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 13px;
  font-weight: 700;
}

.property-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.property-actions .btn {
  min-height: 42px;
  font-size: 14px;
}

/* ABOUT */

.about-section {
  background: var(--azul-oscuro);
  color: var(--blanco);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}

.about-grid h2 {
  color: var(--blanco);
  font-size: clamp(30px, 4vw, 46px);
}

.about-grid p {
  color: rgba(255,255,255,0.82);
  margin-bottom: 18px;
  font-size: 18px;
}

/* SIMULATOR */

.simulator-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.simulator-grid h2,
.contact-grid h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 16px;
}

.simulator-grid p,
.contact-grid p {
  color: var(--gris);
  font-size: 18px;
}

.simulator-card {
  padding: 28px;
}

.form-group {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.form-group label {
  font-weight: 800;
  color: var(--azul-oscuro);
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--borde);
  border-radius: 16px;
  padding: 14px 15px;
  font-size: 16px;
  outline: none;
  background: var(--blanco);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--azul-claro);
  box-shadow: 0 0 0 4px rgba(74, 163, 217, 0.14);
}

.simulator-result {
  background: linear-gradient(135deg, var(--azul-oscuro), var(--azul-medio));
  border-radius: 20px;
  padding: 24px;
  color: var(--blanco);
  margin-top: 20px;
}

.simulator-result span {
  display: block;
  opacity: 0.85;
  margin-bottom: 8px;
}

.simulator-result strong {
  display: block;
  font-size: 34px;
}

.simulator-result small {
  display: block;
  opacity: 0.85;
  margin-top: 8px;
}

/* CTA */

.cta-section {
  padding: 40px 0;
}

.cta-card {
  background: linear-gradient(135deg, var(--azul-medio), var(--azul-claro));
  border-radius: 32px;
  padding: 38px;
  color: var(--blanco);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--sombra);
}

.cta-card h2 {
  color: var(--blanco);
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 8px;
}

/* CONTACT */

.contact-info {
  margin-top: 24px;
}

.contact-info p {
  margin-bottom: 12px;
}

.contact-info a {
  color: var(--azul-medio);
  font-weight: 800;
}

.contact-form {
  padding: 28px;
}

.form-message {
  margin-top: 14px;
  font-weight: 800;
}

/* FOOTER */

.footer {
  background: var(--azul-oscuro);
  color: var(--blanco);
  padding-top: 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 30px;
  padding-bottom: 36px;
}

.footer-logo {
  color: var(--blanco);
  margin-bottom: 16px;
}

.footer p {
  color: rgba(255,255,255,0.75);
}

.footer h4 {
  margin-bottom: 14px;
}

.footer a {
  display: block;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  margin-bottom: 9px;
}

.footer a:hover {
  color: var(--blanco);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  padding: 18px;
  color: rgba(255,255,255,0.72);
}

/* WHATSAPP FLOAT */

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: #25D366;
  color: white;
  text-decoration: none;
  border-radius: 50%;
  font-size: 28px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.22);
  z-index: 99;
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .simulator-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .properties-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-card {
    min-height: auto;
  }

  .hero-image {
    height: 390px;
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--blanco);
    border-bottom: 1px solid var(--borde);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px 4%;
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    padding: 12px;
    border-radius: 12px;
  }

  .nav a:hover {
    background: var(--fondo);
  }

  .hero {
    padding-top: 56px;
  }

  .hero-stats,
  .services-grid,
  .properties-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-image {
    height: 330px;
  }

  .floating-card {
    position: static;
    margin: 16px;
  }

  .property-image {
    height: 200px;
  }
}
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EAF7FF;
  padding: 2rem;
}

.login-card {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 50px rgba(10, 37, 64, 0.12);
}

.login-card h1 {
  color: #0A2540;
  margin-bottom: 0.5rem;
}

.login-card p {
  color: #4b6478;
  margin-bottom: 1.5rem;
}

.login-card input,
.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid #d8e7f1;
  border-radius: 14px;
  margin-bottom: 1rem;
  font-family: inherit;
}

.admin-header {
  background: #0A2540;
  color: #ffffff;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-header h1 {
  margin: 0;
}

.admin-header p {
  margin: 0.25rem 0 0;
  opacity: 0.8;
}

.admin-container {
  background: #EAF7FF;
  min-height: 100vh;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
}

.admin-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 16px 40px rgba(10, 37, 64, 0.08);
}

.admin-form label {
  display: block;
  font-weight: 700;
  color: #0A2540;
  margin-bottom: 0.4rem;
}

.admin-property-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  background: #f8fcff;
  border: 1px solid #dcecf7;
  border-radius: 18px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.admin-property-item img {
  width: 110px;
  height: 90px;
  object-fit: cover;
  border-radius: 14px;
}

.admin-property-item h3 {
  margin: 0 0 0.4rem;
  color: #0A2540;
}

.admin-property-item p {
  margin: 0.2rem 0;
  color: #4b6478;
}

#adminMessage,
#loginMessage {
  margin-top: 1rem;
  font-weight: 700;
  color: #0A2540;
}

@media (max-width: 900px) {
  .admin-container {
    grid-template-columns: 1fr;
  }

  .admin-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}
/* ============================= */
/* FIX HEADER / LOGO / SCROLL */
/* ============================= */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.site-header,
.header,
.navbar {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.nav-container,
.header-container,
.container.nav {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo,
.brand,
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo img,
.brand img,
.nav-logo img,
.logo-img {
  width: 340px !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
}

.logo-text,
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-title,
.brand-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0A2540;
  margin: 0;
}

.logo-subtitle,
.brand-subtitle {
  font-size: 0.9rem;
  color: #1E5F9A;
  margin: 0;
}

.nav-menu,
.menu,
nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.nav-menu a,
.menu a,
nav a {
  white-space: nowrap;
}
/* Header corregido */

.site-header {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid rgba(10, 37, 64, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1480px;
  width: 100%;
  margin: 0 auto;
  padding: 14px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  width: 210px;
  height: auto;
  display: block;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-left: auto;
}

.nav-menu a {
  color: #0A2540;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
  white-space: nowrap;
}

.nav-menu a:hover {
  color: #1E5F9A;
}

.btn-whatsapp {
  background: #1E5F9A;
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.btn-whatsapp:hover {
  background: #0A2540;
}
@media (max-width: 900px) {
  .nav-container {
    padding: 12px 20px;
  }

  .logo-img {
    width: 150px;
  }

  .nav-menu {
    display: none;
  }

  .btn-whatsapp {
    padding: 12px 18px;
    font-size: 14px;
  }
}
/* ============================= */
/* CORRECCIÓN FINAL HEADER LOGO */
/* ============================= */

.site-header,
.header,
.navbar {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid rgba(10, 37, 64, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container.nav,
.nav-container {
  max-width: 1480px;
  width: 100%;
  margin: 0 auto;
  padding: 12px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo,
.brand,
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

/* Tamaño real del logo */
.logo img,
.brand img,
.nav-logo img,
.logo-img {
  width: 240px !important;
  max-width: 240px !important;
  min-width: 240px !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
}

/* Oculta textos antiguos: Enlace / Brokers */
.logo-text,
.brand-text {
  display: none !important;
}

/* Menú */
.nav-menu,
.menu,
nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.nav-menu a,
.menu a,
nav a {
  color: #0A2540;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
  white-space: nowrap;
}

.nav-menu a:hover,
.menu a:hover,
nav a:hover {
  color: #1E5F9A;
}

.btn-whatsapp {
  background: #1E5F9A;
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.btn-whatsapp:hover {
  background: #0A2540;
}

/* Responsive */
@media (max-width: 900px) {
  .container.nav,
  .nav-container {
    padding: 12px 20px;
  }

  .logo img,
  .brand img,
  .nav-logo img,
  .logo-img {
    width: 170px !important;
    max-width: 170px !important;
    min-width: 170px !important;
  }

  .nav-menu,
  .menu,
  nav ul {
    display: none;
  }

  .btn-whatsapp {
    padding: 12px 18px;
    font-size: 14px;
  }
}
/* ============================= */
/* LOGO HEADER */
/* ============================= */

.site-header .brand,
.brand {
  display: flex !important;
  align-items: center !important;
  text-decoration: none !important;
  flex-shrink: 0 !important;
}

.site-header .brand .logo-img,
.brand .logo-img,
.logo-img {
  width: 340px !important;
  max-width: 340px !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
}

/* Tablet */
@media (max-width: 1024px) {
  .site-header .brand .logo-img,
  .brand .logo-img,
  .logo-img {
    width: 280px !important;
    max-width: 280px !important;
  }
}

/* Celular */
@media (max-width: 768px) {
  .site-header .brand .logo-img,
  .brand .logo-img,
  .logo-img {
    width: 210px !important;
    max-width: 210px !important;
  }
}
/* ============================= */
/* ADMIN - LISTADO PROPIEDADES */
/* ============================= */

.admin-properties-section {
  margin-top: 40px;
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 35px rgba(10, 37, 64, 0.08);
}

.admin-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.admin-section-header h2 {
  margin: 0;
  color: #0A2540;
}

.admin-section-header p {
  margin: 6px 0 0;
  color: #60758a;
}

.admin-filters {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 14px;
  margin-bottom: 20px;
}

.admin-filters input,
.admin-filters select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d7e3ef;
  border-radius: 12px;
  font-size: 14px;
}

.admin-properties-list {
  display: grid;
  gap: 14px;
}

.admin-property-card {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border: 1px solid #e1edf7;
  border-radius: 16px;
  background: #fafdff;
}

.admin-property-thumb {
  width: 120px;
  height: 85px;
  border-radius: 12px;
  object-fit: cover;
  background: #eaf7ff;
}

.admin-property-info h3 {
  margin: 0 0 6px;
  color: #0A2540;
  font-size: 17px;
}

.admin-property-info p {
  margin: 3px 0;
  color: #566b7f;
  font-size: 14px;
}

.admin-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  margin-top: 6px;
}

.admin-badge.published {
  background: #e8f8ef;
  color: #18794e;
}

.admin-badge.draft {
  background: #fff4e5;
  color: #b25c00;
}

.admin-property-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.admin-action-btn,
.admin-btn {
  border: none;
  border-radius: 10px;
  padding: 9px 12px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  background: #1E5F9A;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
}

.admin-action-btn:hover,
.admin-btn:hover {
  opacity: 0.9;
}

.admin-action-btn.view {
  background: #4AA3D9;
}

.admin-action-btn.edit {
  background: #1E5F9A;
}

.admin-action-btn.toggle {
  background: #0A2540;
}

.admin-action-btn.delete {
  background: #d93025;
}

.admin-btn.secondary {
  background: #eaf7ff;
  color: #0A2540;
}

@media (max-width: 768px) {
  .admin-section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-filters {
    grid-template-columns: 1fr;
  }

  .admin-property-card {
    grid-template-columns: 1fr;
  }

  .admin-property-thumb {
    width: 100%;
    height: 180px;
  }

  .admin-property-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.price-input-group {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 10px;
  align-items: center;
}

.price-input-group select,
.price-input-group input {
  width: 100%;
}

@media (max-width: 600px) {
  .price-input-group {
    grid-template-columns: 1fr;
  }
}
.whatsapp-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 10px 20px rgba(0,0,0,.25);
  z-index: 9999;
  text-decoration:none;
}

.whatsapp-float img{
  width: 28px;
  height: 28px;
}