/* Paleta de colores */
:root {
    --font-primary: "Noto Sans", sans-serif;
    --font-secondary: "Zalando Sans Expanded", sans-serif;

    --color-white: #FFFFFF;
    --color-light-gray: #E7E7E7;
    --color-gray: #CFCFCF;
    --color-medium-gray: #B6B6B6;
    --color-dark-gray: #9E9E9E;
    --color-darker-gray: #868686;
    --color-charcoal: #6E6E6E;
    --color-dark-charcoal: #555555;
    --color-very-dark: #3D3D3D;
    --color-near-black: #252525;
    --color-black: #0D0D0D;
}

::-webkit-scrollbar {
    display: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Zalando Sans SemiExpanded", sans-serif;
}

body {
    background: linear-gradient(45deg, black, #000000e3);
    color: var(--color-white);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* .noto-sans-<uniquifier> {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
} */


/* ===============================
   HEADER PREMIUM
================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

/* LOGO */
.logo-img {
  height: 46px;
}

/* NAV DESKTOP */
.nav-desktop ul {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-desktop a {
  color: #eaeaea;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #9c8d59, transparent);
  transition: width .3s ease;
}

.nav-desktop a:hover::after {
  width: 100%;
}

/* CTA */
.btn-contact {
  padding: 8px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #9c8d59, #c5b47c);
  color: #000 !important;
  font-weight: 600;
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 1.8rem;
}

/* NAV MOBILE */
.nav-mobile {
  display: none;
  background: rgba(15,15,15,.95);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,.08);
}

.nav-mobile ul {
  list-style: none;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.nav-mobile a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {

  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-mobile.active {
    display: block;
  }
}

/* ===============================
   HERO – PREMIUM REAL ESTATE
================================ */

.hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: center;
  overflow: hidden;

}

/* Overlay animado sutil */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 70% 30%,
      rgba(156,141,89,.18),
      transparent 60%
    );
  z-index: 1;
}

/* CONTENIDO */
.hero-content {
  position: relative;
  z-index: 2;
  /* max-width: 900px; */
  padding: 120px 20px 80px;
  animation: heroFadeUp 1s ease both;
}

/* TITULO */
.hero h1 {
  font-size: clamp(3rem, 5vw, 4.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 26px;
}

/* TEXTO */
.hero p {
  font-size: 1.15rem;
  max-width: 680px;
  line-height: 1.7;
  opacity: .92;
}

/* DIRECCIÓN */
.hero-address {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  padding: 10px 18px;
  border-radius: 20px;
  font-size: .85rem;
  letter-spacing: .08em;
  color: #eaeaea;

  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
}

/* Animación */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 1024px) {
  .hero {
    min-height: 80vh;
  }

  .hero-content {
    padding-top: 100px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 75vh;
  }

  .hero-content {
    padding: 90px 20px 60px;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-address {
    font-size: .8rem;
    padding: 8px 14px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 70vh;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: .95rem;
  }
}

/* Secciones generales */
.section {
    padding: 45px 0;
    /* border-bottom: 1px solid var(--color-light-gray); */
}

.section-title {
    color: var(--color-medium-gray);
    font-size: 2.2rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--color-dark-charcoal);
}

/* ===============================
   MISIÓN & VISIÓN – PREMIUM GLASS
================================ */

.mission-vision {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
  margin-top: 40px;
}

/* CARD */
.mission-vision .card {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.02)
  );
  backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 40px 36px;
  border: 1px solid rgba(255,255,255,0.14);
  transition: transform .45s ease, box-shadow .45s ease;
  overflow: hidden;
}

/* Glow sutil */
.mission-vision .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(156,141,89,0.18),
    transparent 55%
  );
  opacity: .6;
  pointer-events: none;
}

.mission-vision .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0,0,0,.45);
}

/* TITULOS */
.mission-vision h3 {
  font-size: clamp(1.6rem, 2.5vw, 1.9rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
}

/* Línea decorativa */
.mission-vision h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin-top: 14px;
  background: linear-gradient(
    90deg,
    #9c8d59,
    transparent
  );
}

/* TEXTO */
.mission-vision p {
  color: #d6d6d6;
  line-height: 1.7;
  font-size: .95rem;
  margin-bottom: 18px;
}

/* FRASE DESTACADA */
.mission-vision p strong {
  display: block;
  letter-spacing: .04em;
  font-size: .85rem;
  color: #9c8d59;
  margin-bottom: 14px;
}

/* LISTA VISIÓN */
.vision-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vision-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  color: #fff;
}

/* Icono check */
.vision-list li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9c8d59, #c5b47c);
  color: #000;
  font-size: .8rem;
  flex-shrink: 0;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {

  .mission-vision {
    gap: 26px;
  }

  .mission-vision .card {
    padding: 30px 26px;
  }

  .mission-vision h3 {
    font-size: 1.55rem;
  }

}

@media (max-width: 480px) {

  .mission-vision {
    grid-template-columns: 1fr;
  }

  .mission-vision .card {
    padding: 26px 22px;
    border-radius: 18px;
  }

  .mission-vision p {
    font-size: .9rem;
  }

  .vision-list li {
    font-size: .9rem;
  }
}

/* Información General */
.property-info {
    background-color: var(--color-light-gray);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.property-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.highlight-icon {
    background-color: var(--color-near-black);
    color: var(--color-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
}

.requirements {
    background-color: var(--color-very-dark);
    border: 1px solid var(--color-gray);
    border-radius: 8px;
    padding: 30px;
    margin-top: 30px;
}

.price-tag {
    font-size: 2.5rem;
    color: var(--color-near-black);
    font-weight: 700;
    text-align: center;
    margin: 30px 0;
}

/* Problemas y Soluciones */
.problem-solution {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.problems, .solutions {
    padding: 30px;
    border-radius: 8px;
}

.problems {
    background-color: var(--color-very-dark);
    border-left: 5px solid var(--color-charcoal);
}

.solutions {
    background-color: var(--color-very-dark);
    border-left: 5px solid var(--color-charcoal);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.problem-item, .solution-item {
    margin-bottom: 20px;
    padding-left: 20px;
    position: relative;
}

.problem-item:before {
    content: '✗';
    color: #ff6b6b;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.solution-item:before {
    content: '✓';
    color: var(--color-charcoal);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Ubicación */
.location-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.location-list {
    /* background-color: var(--color-white); */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.location-item {
border-bottom: 1px solid var(--color-light-gray);
}

.location-header {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
    cursor: pointer;
}

/* .location-header:hover {
background-color: #adadad34;
} */

.location-map {
max-height: 0;
overflow: hidden;
transition: max-height 0.35s ease;
}

.location-map iframe {
width: 100%;
height: 260px;
border: 0;
margin-top: 12px;
border-radius: 8px;
}
.location-item.active .location-arrow {
transform: rotate(180deg);
}


/* Estado abierto */
.location-item.active .location-map {
max-height: 300px;
}
.map-placeholder {
    background-color: var(--color-light-gray);
    height: 300px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark-charcoal);
    font-weight: 500;
}

/* Tendencias de Mercado */
.market-trends {
    /* background-color: var(--color-light-gray); */
    padding: 40px;
    border-radius: 8px;
}

.price-range {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 200px;
    margin-top: 40px;
    gap: 40px;
}

.price-bar {
    width: 50px;
    background-color: var(--color-charcoal);
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: height 0.5s;
}

.price-bar.our-price {
    background-color: #6E90FF;
}

.price-label {
    position: absolute;
    bottom: -25px;
    left: 0;
    width: 100%;
    text-align: center;
    font-weight: 600;
    color: var(--color-very-dark);
}

/* Contacto */
.contact-section {
    text-align: center;
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 60px 0;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-icon {
    background-color: var(--color-white);
    color: var(--color-near-black);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

    /* Sección general */
    .contact-section {
    background: #000000;
    padding: 80px 20px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    }

    .contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    }

    /* Tarjetas */
    .contact-info-card,
    .contact-form-card {
    background: #444444;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    /* Columna izquierda */
    .contact-info-card h2 {
    font-size: 28px;
    color: #fcfcfc;
    margin-bottom: 12px;
    }

    .contact-info-card .subtitle {
    color: #aaacb1;
    margin-bottom: 32px;
    line-height: 1.6;
    }

    .info-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    background: #f9fafb;
    margin-bottom: 16px;
    }

    .info-item h4 {
    margin: 0;
    font-size: 16px;
    color: #111827;
    }

    .info-item p {
    margin: 4px 0 0;
    color: #6b7280;
    font-size: 14px;
    }

    .icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: var(--color-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    }

    .icon i {
    font-size: 20px;
    color: var(--color-very-dark);
    }

    /* Formulario */
    .contact-form-card h3 {
    font-size: 24px;
    color: #ebebeb;
    margin-bottom: 8px;
    }

    .form-subtitle {
    color: #b0b0b1;
    margin-bottom: 24px;
    }

    .contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    }

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

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-size: 14px;
    outline: none;
    background: #ffffff;
    }

    .contact-form textarea {
    resize: none;
    min-height: 120px;
    }

    .contact-form input:focus,
    .contact-form select:focus,
    .contact-form textarea:focus {
    border-color: #9ca3af;
    }

    /* Botón */
    .contact-form button {
    margin-top: 8px;
    padding: 14px;
    border-radius: 12px;
    border: none;
    background: #111827;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
    }

    .contact-form button:hover {
    background: #374151;
    }
    .location-section {
    margin-top: 32px;
    }

    .location-section h3 {
    font-size: 20px;
    color: #d1dcf3;
    margin-bottom: 16px;
    }

    .map-container {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    }

    .location-info {
    margin-top: 14px;
    font-size: 14px;
    color: #e6e6e6;
    }

    .location-info p {
    margin: 4px 0;
    }

    .location-info .nearby {
    margin-top: 10px;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
    }
    /* Base nav (desktop) */
nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}
.footer-section {
    position: relative;
    background: linear-gradient(to bottom, #1a1a1a, #2d2d2d);
    color: #ffffff;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
}

/* Footer Top */
.footer-top {
    padding: 80px 0 50px;
    position: relative;
}

/* Company Info Widget */
.company-info {
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    justify-content: center;
}

/* Botón hamburguesa */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 2rem;
    cursor: pointer;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    nav {
        /* position: fixed; */
        inset: 0;
        background: rgba(0,0,0,0.95);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }

    nav ul {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    nav ul li a {
        font-size: 1.4rem;
        color: #fff;
        text-decoration: none;
        letter-spacing: 0.08em;
    }

    nav.active {
        transform: translateX(0);
    }
    .price-range {
        flex-direction: column;
        height: auto;
        gap: 16px;
    }

    .price-bar {
        width: 100%;
        height: 36px;
        border-radius: 0 6px 6px 0;
    }

    .price-bar::before {
        height: 100%;
        width: calc(attr(data-value number) * 1%);
    }

    .price-label {
        right: 10px;
        left: auto;
        bottom: 50%;
        transform: translateY(50%);
        color: #fff;
        font-size: 0.9rem;
        white-space: nowrap;
    }
}



/* Footer */
footer {
    background-color: var(--color-black);
    color: var(--color-white);
    text-align: center;
    padding: 30px 0;
}

.quote {
    font-style: italic;
    color: var(--color-white);
    margin: 20px 0;
    font-size: 1.1rem;
}
/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .logo-section {
        display: flex;
        justify-content: space-between;
    }
    .contact-container {
        grid-template-columns: 1fr;
    }

    nav ul {
        margin-top: 20px;
    }

}

/* ===============================
INFO SECTION – PREMIUM DESIGN
================================ */

.info-section {
    position: relative;
    /* padding: 90px 0; */
    overflow: hidden;
}

/* Vector decorativo */
.info-section::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 380px;
    height: 380px;
    filter: blur(40px);
}

.info-description {
    max-width: 720px;
    font-size: 1.05rem;
    color: var(--color-light-gray);
    margin-bottom: 50px;
}

/* GRID DE HIGHLIGHTS */
.property-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-bottom: 50px;
}

/* CARD GRUPO */
.highlight-group {
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.08),
        rgba(255,255,255,0.02)
    );
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 26px;
    border: 1px solid rgba(255,255,255,0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.highlight-group:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

/* ITEM */
.highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: #eaeaea;
}

/* ICONOS */
.highlight-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(
        135deg,
        #ffffff,
        #bdbdbd
    );
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-item:hover .highlight-icon {
    transform: scale(1.1) rotate(3deg);
    box-shadow: 0 8px 20px rgba(255,255,255,0.35);
}

/* ===============================
REQUISITOS
================================ */

.requirements {
    margin-top: 60px;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.06),
        rgba(255,255,255,0.02)
    );
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.15);
}

.requirements h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: #ffffff;
}

/* Quote */
.quote {
    margin-top: 40px;
    font-size: 1rem;
    text-align: center;
    color: var(--color-medium-gray);
    opacity: 0.85;
}

/* Animación suave */
.animate-soft {
    animation: fadeUp 0.8s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================
PREMIUM SYSTEM
================================ */
:root {
    --glass-bg: rgba(255,255,255,0.08);
    --glass-border: rgba(255,255,255,0.15);
    --blur: blur(12px);
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Secciones */
.section {
    /* padding: 100px 0; */
    position: relative;
}

/* Títulos */
.section-title {
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: 40px;
}

.section-title::after {
    content: "";
    display: block;
    width: 90px;
    height: 3px;
    margin-top: 14px;
    background: linear-gradient(
        90deg,
        #ffffff,
        transparent
    );
}

/* Glass Card */
.glass {
    background: var(--glass-bg);
    backdrop-filter: var(--blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 35px;
}

/* Hover Elevation */
.hover-lift {
    transition: transform .4s ease, box-shadow .4s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0,0,0,.45);
}

/* Fade animation */
.fade-up {
    animation: fadeUp .8s ease both;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.location-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 24px;
}
.ai-style-change-1 { /* the element was .location-block */
    grid-column: span 1;
}

.location-block {
background: var(--glass-bg);
backdrop-filter: var(--blur);
border-radius: 16px;
padding: 24px;
box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.location-block.full {
grid-column: 1 / -1;
}

.location-block-title {
font-size: 1.1rem;
margin-bottom: 20px;
display: flex;
align-items: center;
gap: 8px;
}

.location-item {
/* background: #fafafa; */
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 12px;
    transition: .3s ease;
    cursor: pointer;
}

.location-item:hover {
    background: #303030;
}

.location-name {
    font-weight: 600;
}

.location-type {
    font-size: .8rem;
    color: #777;
}

.location-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-time {
    font-weight: 600;
    color: #9c8d59;
}

.location-map iframe {
    width: 100%;
    height: 260px;
    border: 0;
    border-radius: 12px;
    margin-top: 14px;
}

.map-container iframe {
    width: 100%;
    height: 320px;
    border-radius: 16px;
    border: 0;
}

.location-info {
margin-top: 16px;
}

.muted {
color: #666;
font-size: .9rem;
}

.nearby-tags {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-top: 12px;
}

.nearby-tags span {
background: #eef2ff;
color: #1e3a8a;
padding: 6px 12px;
border-radius: 20px;
font-size: .8rem;
}


/* ===============================
   RESPONSIVE – TABLET
================================ */
@media (max-width: 1024px) {

  .info-section {
    padding: 70px 0;
  }

  .info-description {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .property-highlights {
    gap: 22px;
  }

  .highlight-group {
    padding: 22px;
  }

  .requirements {
    padding: 32px;
  }

  .section {
    padding: 80px 0;
  }

  .location-grid {
    gap: 20px;
  }

  .location-map iframe,
  .map-container iframe {
    height: 280px;
  }
}


@media (max-width: 768px) {

  /* SECTION */
  .info-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.9rem;
    margin-bottom: 28px;
  }

  .section-title::after {
    width: 70px;
  }

  .info-description {
    font-size: .95rem;
    margin-bottom: 36px;
  }

  /* HIGHLIGHTS */
  .property-highlights {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .highlight-group {
    padding: 20px;
  }

  .highlight-item {
    font-size: .9rem;
  }

  .highlight-icon {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  /* REQUIREMENTS */
  .requirements {
    padding: 26px;
    margin-top: 50px;
  }

  .requirements h3 {
    font-size: 1.4rem;
  }

  /* LOCATION */
  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-block {
    padding: 20px;
  }

  .location-block.full {
    grid-column: auto;
  }

  .location-map iframe,
  .map-container iframe {
    height: 250px;
  }
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .navbar-glass {
        padding: 10px 0;
        /* background: #292929; */
    }

    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        margin-top: 15px;
        padding: 15px;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-nav {
        text-align: center;
    }

    .nav-link {
        padding: 12px !important;
        font-size: 14px;
    }

    .nav-link::after {
        display: none;
    }

    .navbar-brand img {
        width: 50px;
    }

    .logo-text {
        font-size: 20px;
    }

    .logo-subtext {
        font-size: 10px;
    }

    .navbar .nav-item.dropdown {
        width: 100%;
    }
    .navbar .nav-item.dropdown .dropdown-menu {
        min-width: 120px;
        width: 100%;
        left: 0 !important;
        right: auto !important;
        text-align: left;
    }
    .navbar .nav-item.dropdown .dropdown-toggle {
        width: 100%;
        justify-content: flex-start;
    }
    .navbar .nav-item.dropdown .dropdown-item {
        padding: 10px 20px;
        font-size: 15px;
        color: white;
    }
    .navbar .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        margin-top: 0;
        background: #292929;
        z-index: 9999;
        box-shadow: none;
    }
    .navbar .dropdown-menu.show {
        display: block;
    }

    .dropdown-menu { display: block !important; }
}



@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


@media (max-width: 480px) {

  .info-section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.65rem;
  }

  .info-description {
    font-size: .9rem;
  }

  .highlight-group {
    padding: 18px;
    border-radius: 16px;
  }

  .highlight-item {
    gap: 12px;
  }

  .highlight-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .requirements {
    padding: 22px;
  }

  .quote {
    font-size: .9rem;
  }

  /* LOCATION ITEMS */
  .location-item {
    padding: 12px 14px;
  }

  .location-name {
    font-size: .95rem;
  }

  .location-time {
    font-size: .9rem;
  }

  .location-map iframe,
  .map-container iframe {
    height: 220px;
    border-radius: 14px;
  }

  .nearby-tags span {
    font-size: .75rem;
    padding: 5px 10px;
  }
}
