/* =========================
       Global Design System
    ========================= */
    :root {
      --primary: #02262A;
      --gold: #A88A4A;
      --background: #FFFFFF;
      --light-bg: #F8F8F5;
      --text: #1A1A1A;
      --muted: #6D6D66;
      --line: rgba(2, 38, 42, 0.12);
      --glass: rgba(255, 255, 255, 0.72);
      --shadow-soft: 0 18px 50px rgba(2, 38, 42, 0.08);
      --shadow-card: 0 14px 34px rgba(2, 38, 42, 0.10);
      --radius-sm: 12px;
      --radius-md: 20px;
      --radius-lg: 32px;
      --header-height: 78px;
      --section-padding: 50px;
      --mobile-card: 420px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Inter", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 12% 8%, rgba(168, 138, 74, 0.07), transparent 28%),
        radial-gradient(circle at 92% 20%, rgba(2, 38, 42, 0.05), transparent 30%),
        var(--background);
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: 0.18;
      z-index: 9999;
      background-image:
        linear-gradient(rgba(2, 38, 42, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(2, 38, 42, 0.03) 1px, transparent 1px);
      background-size: 42px 42px;
      mix-blend-mode: multiply;
    }

    body::after {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: 0.08;
      z-index: 9999;
      background-image:
        radial-gradient(circle, rgba(26, 26, 26, 0.45) 0.5px, transparent 0.7px);
      background-size: 4px 4px;
    }

    img,
    video {
      width: 100%;
      display: block;
      object-fit: cover;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    select {
      font-family: inherit;
    }

    .container {
      width: min(100% - 32px, 1180px);
      margin: 0 auto;
    }

    .section {
      position: relative;
      padding: var(--section-padding) 0;
      overflow: hidden;
    }

    .section.alt {
      background: var(--light-bg);
    }

    .section::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(120deg, transparent 0%, rgba(168, 138, 74, 0.05) 45%, transparent 72%),
        linear-gradient(90deg, rgba(2, 38, 42, 0.035) 1px, transparent 1px);
      background-size: auto, 90px 90px;
      opacity: 0.35;
    }

    .section > * {
      position: relative;
      z-index: 1;
    }

    .eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 14px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
}

    .eyebrow::before {
      content: "";
      width: 32px;
      height: 1px;
      background: var(--gold);
    }

    h1,
    h2,
    h3 {
      font-family: "Cormorant Garamond", serif;
      color: var(--primary);
      line-height: 0.95;
      font-weight: 600;
      letter-spacing: -0.035em;
    }

    h1 {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  max-width: 980px;
}

    h2 {
      font-size: clamp(2rem, 6vw, 4rem);
      max-width: 780px;
    }

    h3 {
      font-size: clamp(1.5rem, 4vw, 2.25rem);
    }

    p {
      color: var(--muted);
      line-height: 1.75;
      font-size: 0.98rem;
    }

    .section-head {
  display: grid;
  gap: 16px;
  margin-bottom: 38px;
  text-align: center;
  justify-items: center;
}

    .section-head p {
      max-width: 680px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 48px;
      padding: 0 22px;
      border-radius: 999px;
      border: 1px solid transparent;
      cursor: pointer;
      font-size: 0.84rem;
      font-weight: 700;
      letter-spacing: 0.03em;
      transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      background: #d1aa5c;
      color: white;
      box-shadow: 0 16px 30px rgba(2, 38, 42, 0.18);
    }

    .btn-primary:hover {
      background: #9b783d;
    }

    .btn-secondary {
      background: transparent;
      color: var(--primary);
      border-color: rgba(168, 138, 74, 0.48);
    }

    .btn-secondary:hover {
      color: var(--gold);
      border-color: var(--gold);
      box-shadow: 0 12px 24px rgba(168, 138, 74, 0.12);
    }

    .fade-up {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* =========================
       Header
    ========================= */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      height: var(--header-height);
      background: #02262A;
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(2, 38, 42, 0.08);
      transition: transform 0.34s ease, background 0.34s ease;
    }

    .site-header.hidden {
      transform: translateY(-110%);
    }

    .header-inner {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: max-content;
    }

    .logo-mark {
  width: auto;
  height: 56px;
  display: block;
  object-fit: contain;
}

    .desktop-nav,
    .header-actions {
      display: none;
    }

    .hamburger {
      width: 46px;
      height: 46px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: #d8ab4f;
      display: grid;
      place-items: center;
      cursor: pointer;
    }

 .hamburger span {
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 999px;
  position: relative;
  transition: background 0.25s ease;
}

.hamburger span::before,
.hamburger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 999px;
  transition: transform 0.25s ease;
}

.hamburger span::before {
  transform: translateY(-7px);
}

.hamburger span::after {
  transform: translateY(7px);
}

.hamburger.active span {
  background: transparent;
}

.hamburger.active span::before {
  transform: rotate(45deg);
}

.hamburger.active span::after {
  transform: rotate(-45deg);
}

    .mobile-menu {
      position: fixed;
      inset: 78px 16px auto 16px;
      z-index: 999;
      padding: 10px;
      border: 1px solid rgba(168, 138, 74, 0.18);
      border-radius: var(--radius-lg);
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(18px);
      box-shadow: var(--shadow-soft);
      transform: translateY(-12px);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease, transform 0.3s ease;
      max-height: calc(100vh - 78px);
overflow-y: auto;
-webkit-overflow-scrolling: touch;
    }

    .mobile-menu.open {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .mobile-links {
      display: grid;
      gap: 0px;
      margin-bottom: 20px;
    }

    .mobile-link {
      padding: 12px 0;
      border-bottom: 1px solid rgba(2, 38, 42, 0.08);
      color: var(--primary);
      font-weight: 700;
    }

    .mobile-link small {
      display: block;
      margin-top: 5px;
      color: var(--muted);
      font-weight: 500;
    }

   .mobile-dropdown-toggle {
  width: 100%;
  padding: 12px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(2, 38, 42, 0.08);
  color: var(--primary);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  position: relative;
}

.mobile-dropdown-toggle span {
  position: absolute;
  left: calc(50% + 70px);
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 0.75rem;
  margin-left: 0;
}

.mobile-submenu {
  display: none;
  padding: 0 0 10px;
  border-bottom: 1px solid rgba(2, 38, 42, 0.08);
  text-align: center;
}

.mobile-submenu a {
  display: block;
  width: fit-content;
  margin: 12px auto;
  padding: 6px 14px;
  color: var(--primary);
  background: rgba(168, 138, 74, 0.08);
  border: 1px solid rgba(168, 138, 74, 0.18);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  opacity: 1;
}

.mobile-dropdown.open .mobile-submenu {
  display: block;
}

    .socials {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .social-icon {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      border: 1px solid rgba(168, 138, 74, 0.28);
      color: var(--gold);
      transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    }

    .social-icon:hover {
      color: var(--gold);
      border-color: var(--gold);
      transform: translateY(-2px);
    }

    .mobile-slogan {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(2, 38, 42, 0.08);
  font-family: "Cormorant Garamond", serif;
  color: var(--primary);
  font-size: 1.25rem;
  text-align: center;
}

body.menu-open {
  overflow: hidden;
}

    /* =========================
       Hero Section
    ========================= */
    .hero {
      min-height: 100vh;
      padding-top: var(--header-height);
      background: var(--primary);
    }

    .hero-media {
      position: relative;
      height: calc(100vh - var(--header-height));
      min-height: 620px;
      overflow: hidden;
    }

    .hero-media picture,
.hero-media img,
.hero-media video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.desktop-video {
  display: none;
}

.mobile-video {
  display: block;
}



    .hero-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(2, 38, 42, 0.78), rgba(2, 38, 42, 0.32) 58%, rgba(2, 38, 42, 0.22)),
        linear-gradient(0deg, rgba(2, 38, 42, 0.4), transparent 48%);
    }

    .hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-align: center;
}

    .hero h1,
.hero p {
  color: white;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

    .hero h1 {
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-wrap: balance;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
  margin: 18px auto 0;
  text-align: center;
  font-weight: 500;
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  line-height: 1.65;
  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.28);
}

    .hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

   .hero .btn-secondary {
  background: #02262A;
  color: white;
  border-color: #02262A;
}

.hero .btn-secondary:hover {
  background: #03343a;
  border-color: #03343a;
}

    /* =========================
       About Section
    ========================= */
    .about-grid {
      display: grid;
      gap: 32px;
    }

    .about-card {
  background: var(--glass);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(168, 138, 74, 0.18);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 10px;
}

    .founder {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 26px;
}

    .founder picture,
    .founder img {
      width: 72px;
      height: 72px;
      border-radius: 50%;
    }

    .founder strong {
      display: block;
      color: var(--primary);
      font-weight: 800;
    }

    .founder span {
      color: var(--gold);
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 360px;
  box-shadow: var(--shadow-card);
  position: relative;
}

    .about-image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

    /* =========================
       Property Search
    ========================= */
    .search-panel {
      max-width: 860px;
      margin: 0 auto;
      padding: 28px;
      border: 1px solid rgba(168, 138, 74, 0.18);
      border-radius: var(--radius-lg);
      background: rgba(255, 255, 255, 0.76);
      backdrop-filter: blur(16px);
      box-shadow: var(--shadow-soft);
    }

    .search-panel h2 {
      text-align: center;
      margin: 0 auto 28px;
      font-size: clamp(2.1rem, 7vw, 4.2rem);
    }

    .search-line {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(168, 138, 74, 0.55), transparent);
      margin-bottom: 24px;
    }

    .toggle-row {
      display: flex;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 16px;
    }

    .toggle-btn {
      min-width: 120px;
      min-height: 42px;
      border-radius: 999px;
      border: 1px solid rgba(2, 38, 42, 0.12);
      background: transparent;
      color: var(--primary);
      cursor: pointer;
      font-weight: 800;
      font-size: 0.78rem;
      letter-spacing: 0.08em;
      transition: 0.25s ease;
    }

    .toggle-btn.active,
    .toggle-btn:hover {
      background: var(--primary);
      color: white;
      border-color: var(--primary);
    }

    .search-fields {
      display: grid;
      gap: 12px;
      margin-top: 24px;
    }

    .field {
      min-height: 58px;
      border: 1px solid rgba(2, 38, 42, 0.12);
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.86);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 18px;
      color: var(--primary);
      font-weight: 700;
    }

    .field span:last-child {
      color: var(--gold);
    }

    .search-submit {
      margin-top: 18px;
      display: flex;
      justify-content: center;
    }

    /* =========================
       Category Cards
    ========================= */
    .category-grid,
    .offplan-grid,
    .trust-grid,
    .team-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    

    

    .category-card {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  isolation: isolate;
}

    .category-card picture,
.category-card img {
  width: 100%;
  height: 100%;
}

.category-card img {
  object-fit: cover;
  object-position: center;
}

    .category-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, rgba(2, 38, 42, 0.74), rgba(2, 38, 42, 0.08));
      z-index: 1;
    }

    .category-content {
      position: absolute;
      inset: auto 18px 18px 18px;
      z-index: 2;
      color: white;
    }

    .category-content h3 {
      color: white;
      font-size: 1.55rem;
      margin-bottom: 10px;
    }

    .explore-link {
      color: var(--gold);
      font-weight: 800;
      font-size: 0.85rem;
    }

    /* =========================
       Featured Properties Carousel
    ========================= */
    .carousel-shell {
      position: relative;
    }

    .carousel-window {
      overflow: hidden;
    }

    .property-track {
      display: flex;
      gap: 18px;
      transition: transform 0.5s ease;
    }

    .property-card {
      min-width: 100%;
      background: white;
      border: 1px solid rgba(2, 38, 42, 0.08);
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-soft);
    }

    .property-card picture,
    .property-card img {
      height: 290px;
    }

    .property-body {
      padding: 18px;
    }

    .property-meta {
      color: var(--gold);
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .property-body h3 {
      margin: 8px 0;
      font-size: 1.55rem;
    }

    .property-details {
      color: var(--muted);
      font-size: 0.88rem;
      margin-bottom: 10px;
    }

    .price {
      color: var(--primary);
      font-weight: 900;
      margin-bottom: 14px;
    }

    .carousel-btn {
  position: absolute;
  top: 43%;
  transform: translateY(-50%);
  z-index: 5;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(168, 138, 74, 0.55);
  background: rgba(2, 38, 42, 0.92);
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(2, 38, 42, 0.22);
  display: grid;
  place-items: center;
}

.carousel-btn::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  transition: transform 0.25s ease;
}

.carousel-btn.prev::before {
  transform: rotate(-135deg);
  margin-left: 4px;
}

.carousel-btn.next::before {
  transform: rotate(45deg);
  margin-right: 4px;
}

.carousel-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.carousel-btn:hover::before {
  border-color: white;
}

    .carousel-btn.prev {
      left: -6px;
    }

    .carousel-btn.next {
      right: -6px;
    }

    /* =========================
       Off Plan Cards
    ========================= */
    .offplan-card,
    .trust-card,
    .insight-card,
    .faq-item {
      background: rgba(255, 255, 255, 0.84);
      border: 1px solid rgba(2, 38, 42, 0.08);
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      transition: transform 0.28s ease, box-shadow 0.28s ease;
    }

    .offplan-card:hover,
    .trust-card:hover,
    .insight-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-card);
    }

    .offplan-card picture,
    .offplan-card img {
      height: 280px;
    }

    .offplan-body {
      padding: 18px;
    }

    .developer-name {
      color: var(--gold);
      font-size: 0.76rem;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    /* =========================
       Trust Bar
    ========================= */
    .trust-card {
  padding: 24px;
  text-align: center;
  display: grid;
  justify-items: center;
}

    .trust-icon {
  width: 138px;
  height: 118px;
  border-radius: 18px;
  overflow: hidden;
  margin: 0 auto 18px;
  border: 1px solid rgba(168, 138, 74, 0.18);
}

.trust-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

    .trust-card h3 {
      font-size: 1.5rem;
      margin-bottom: 10px;
    }

    /* =========================
       Owners Section
    ========================= */
    .owners-box {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 60px;
    background: var(--primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

    .owners-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

    .owners-content h2,
    .owners-content p {
      color: white;
      margin-bottom: 15px;
    }

    .owners-content p {
      color: rgba(255, 255, 255, 0.72);
    }

    .check-list {
  display: grid;
  gap: 12px;
  margin: 2px 0 26px;
  color: white;
  font-weight: 700;
  justify-items: center;
}

    .check-list span::before {
      content: "✓";
      color: var(--gold);
      margin-right: 10px;
    }

    .owners-image {
      min-height: 340px;
      border-radius: 24px;
      overflow: hidden;
    }

    .owners-image picture,
    .owners-image img {
      height: 100%;
    }

    /* =========================
       Team
    ========================= */
    .team-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

    .team-card picture,
.team-card img {
  width: 100%;
  height: auto;
}

    .team-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, rgba(2, 38, 42, 0.78), transparent 55%);
    }

    .team-info {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  color: white;
  text-align: center;
}

    .team-info strong {
      display: block;
      font-size: 1rem;
    }

    .team-info span {
      color: rgba(255, 255, 255, 0.72);
      font-size: 0.82rem;
    }

    /* =========================
       Developers Carousel
    ========================= */
    .developer-window {
      overflow: hidden;
      mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    }

    .developer-track {
      display: flex;
      gap: 16px;
      width: max-content;
      animation: developerSlide 26s linear infinite;
    }

    .developer-card {
  width: 220px;
  height: 92px;
  border-radius: 18px;
  border: 1px solid rgba(2, 38, 42, 0.08);
  background: white;
  display: grid;
  place-items: center;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.developer-card img {
  width: 100%;
  max-height: 46px;
  object-fit: contain;
}

    @keyframes developerSlide {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

/* =========================
   Insights
========================= */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.insight-card {
  padding: 24px;
  text-align: center;
  display: grid;
  justify-items: center;
}

.insight-card picture {
  width: 300px;
  height: 300px;
  border-radius: 18px;
  overflow: hidden;
  margin: 0 auto 18px;
  border: 1px solid rgba(168, 138, 74, 0.18);
}

.insight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insight-body {
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.insight-body h3 {
  font-size: 1.45rem;
  margin-bottom: 13px;
  text-align: center;
}

    /* =========================
       FAQ
    ========================= */
    .faq-list {
      display: grid;
      gap: 12px;
      max-width: 880px;
      margin: 0 auto;
    }

    .faq-question {
      width: 100%;
      min-height: 68px;
      border: 0;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 22px;
      cursor: pointer;
      color: var(--primary);
      font-weight: 800;
      text-align: left;
      font-size: 0.98rem;
    }

    .faq-question::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-left: 18px;
}

.faq-item.open .faq-question::after {
  transform: rotate(-135deg);
}

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.34s ease;
    }

    .faq-answer p {
      padding: 0 22px 22px;
    }

    .faq-item.open .faq-answer {
      max-height: 180px;
    }

    /* =========================
       Contact page
    ========================= */
    .contact-grid {
      display: grid;
      gap: 26px;
    }

    .contact-card {
      padding: 28px;
      border-radius: var(--radius-lg);
      background: var(--primary);
      color: white;
      box-shadow: var(--shadow-card);
    }

    .contact-card h3,
    .contact-card p {
      color: white;
    }

    .contact-line {
      width: 64px;
      height: 1px;
      background: var(--gold);
      margin: 14px 0 24px;
    }

    .contact-items {
      display: grid;
      gap: 18px;
    }

    .contact-item strong {
      display: block;
      color: var(--gold);
      margin-bottom: 4px;
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .map-box {
  min-height: 420px;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(2, 38, 42, 0.08);
  box-shadow: var(--shadow-soft);
  position: relative;
}

    .map-placeholder {
      height: 100%;
      min-height: 420px;
      display: grid;
      place-items: center;
      background:
        linear-gradient(120deg, rgba(2, 38, 42, 0.08), rgba(168, 138, 74, 0.08)),
        var(--light-bg);
      color: var(--primary);
      text-align: center;
      padding: 28px;
    }

   .map-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

    /* =========================
       Footer
    ========================= */
    .footer {
      background: var(--primary);
      color: white;
      padding: 60px 0 28px;
    }

    .footer-grid {
      display: grid;
      gap: 32px;
    }

    .footer h3 {
      color: white;
      font-size: 1.5rem;
      margin-bottom: 16px;
    }

    .footer p,
    .footer a {
      color: rgba(255, 255, 255, 0.72);
    }

    .footer-links {
      display: grid;
      gap: 10px;
    }

    .footer a:hover {
      color: var(--gold);
    }

    .footer-bottom {
      margin-top: 40px;
      padding-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.56);
      font-size: 0.84rem;
    }

    .mobile-links {
  text-align: center;
}

.mobile-link {
  text-align: center;
}

.mobile-link small {
  display: block;
  text-align: center;
}

.mobile-menu .btn {
  display: flex;
  width: min(100%, 280px);
  margin: 0 auto;
}


/* =========================
       About-us page css
    ========================= */
    .subpage-hero {
  padding: calc(var(--header-height) + 70px) 0 70px;
  background: var(--light-bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.subpage-hero-inner {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding-bottom: 50px;
}

.subpage-hero p {
  max-width: 720px;
}

.about-story-grid,
.founder-profile-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

.about-story-grid {
  margin-top: 42px;
}

.about-side-image,
.founder-profile-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.about-side-image {
  aspect-ratio: 16 / 10;
  width: min(100%, 560px);
  justify-self: center;
}

.about-side-image picture,
.about-side-image img {
  width: 100%;
  height: 100%;
}

.about-side-image img {
  object-fit: cover;
  object-position: center;
}

.founder-profile-image {
  aspect-ratio: 4 / 5;
  width: min(100%, 420px);
  justify-self: center;
}

.founder-profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.values-grid,
.process-grid,
.client-grid {
  display: grid;
  gap: 14px;
}

.value-card,
.process-card,
.client-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(2, 38, 42, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 24px;
  text-align: center;
  display: grid;
  gap: 2px;
}

.process-card span {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}

.client-card {
  color: var(--primary);
  font-weight: 800;
}


/* =========================
   Meet The Team Page
========================= */

.team-page-hero p {
  max-width: 720px;
}

.team-page-grid {
  display: grid;
  gap: 18px;
}

.team-member-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(2, 38, 42, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.team-member-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.team-member-image {
  aspect-ratio: 4 / 5;
  width: 100%;
  overflow: hidden;
  background: var(--light-bg);
}

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-member-body {
  padding: 22px;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.team-role {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.team-member-body h3 {
  font-size: 1.65rem;
}

.team-member-body p {
  max-width: 320px;
}

.team-languages {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.team-languages span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(168, 138, 74, 0.08);
  border: 1px solid rgba(168, 138, 74, 0.18);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.team-languages span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.team-page-hero {
  padding-bottom: 2px;
}

.team-page-hero .section-head {
  margin-bottom: 1px;
}

/* =========================
   Careers Page
========================= */

.careers-hero p {
  max-width: 720px;
}

.careers-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.careers-benefits-grid,
.careers-jobs-grid,
.careers-process-grid {
  display: grid;
  gap: 18px;
}

.careers-benefit-card,
.career-job-card,
.careers-process-card,
.careers-culture-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(2, 38, 42, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 24px;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 12px;
}

.careers-benefit-card h3,
.career-job-card h3,
.careers-process-card h3 {
  font-size: 1.55rem;
}

.career-job-meta {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.careers-culture-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

.careers-culture-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 5;
  width: min(100%, 420px);
  justify-self: center;
}

.careers-culture-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.careers-process-card span {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-bottom: 4px;
}

.career-apply-note {
  margin-top: 34px;
  text-align: center;
  color: var(--primary);
  font-size: 1rem;
}

.career-apply-note a {
  color: var(--gold);
}

   /* =========================
   FLOATING BUTTONS BASE
   ========================= */

.floating-btn {
  position: fixed;
  bottom: 20px;
  z-index: 9999;
}

.floating-btn img {
  width: 60px;
  height: auto;
  display: block;
}

/* =========================
   WHATSAPP (prawa strona)
   ========================= */

.floating-btn.whatsapp {
  right: 20px;
}

/* =========================
   CALL BUTTON (lewa strona)
   ========================= */

/* domyślnie ukryty */
.call-button-mobile {
  display: none;
  left: 20px;
}

.floating-btn {
  transition: opacity 0.3s ease;
}


.floating-btn.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}


/* =========================
   Residential Listings Page
========================= */
.listings-hero {
  padding: calc(var(--header-height) + 25px) 0 24px;
}

.listings-hero .subpage-hero-inner {
  padding-bottom: 0;
}

.listings-hero h1 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  line-height: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.listing-grid {
  display: grid;
  gap: 22px;
}

.listing-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(2, 38, 42, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(168, 138, 74, 0.26);
}

.listing-image {
  display: block;
  width: 100%;
  overflow: hidden;
  background: var(--light-bg);
}

.listing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.listing-card:hover .listing-image img {
  transform: scale(1.035);
}

.listing-content {
  padding: 22px;
  display: grid;
  gap: 14px;
}

.listing-price-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.listing-price-row h2 {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.25rem, 2.4vw, 1.9rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--primary);
  max-width: none;
}

.listing-price-row span {
  flex-shrink: 0;
  margin-top: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(168, 138, 74, 0.1);
  border: 1px solid rgba(168, 138, 74, 0.18);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  white-space: nowrap;
}

.listing-content h3 {
  font-family: "Inter", sans-serif;
  color: var(--primary);
  font-size: 0.98rem;
  line-height: 1.45;
  letter-spacing: 0;
  font-weight: 800;
}

.listing-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.listing-specs div,
.listing-location,
.listing-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.listing-specs div {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(2, 38, 42, 0.035);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
}

.listing-specs svg,
.listing-location svg,
.listing-action svg {
  width: 17px;
  height: 17px;
  fill: var(--gold);
  flex-shrink: 0;
}

.listing-location {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.45;
}

.listing-footer {
  margin-top: 4px;
  padding-top: 18px;
  border-top: 1px solid rgba(2, 38, 42, 0.08);
  display: grid;
  gap: 16px;
}

.listing-agent {
  display: flex;
  align-items: center;
  gap: 12px;
}

.listing-agent img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(168, 138, 74, 0.3);
}

.listing-agent strong {
  display: block;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 900;
}

.listing-agent span {
  display: block;
  margin-top: 3px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.listing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.listing-action {
  min-height: 42px;
  padding: 0 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(2, 38, 42, 0.1);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 900;
  transition: 0.25s ease;
}

.listing-action:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
}

.listing-action:hover svg {
  fill: white;
}

.whatsapp-action svg {
  fill: #25D366;
}


.listing-info-link {
  display: grid;
  gap: 14px;
}

/* =========================
   Property Single Page
========================= */

.property-single-section {
  padding-top: calc(var(--header-height) + 25px);
}

.property-single-head {
  margin-bottom: 34px;
}

.property-single-head h1 {
  font-family: "Cormorant Garamond", serif; /* taki sam jak Listings */
  font-size: clamp(1.9rem, 3.8vw, 3rem);    /* identyczna skala */
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.035em;
  color: var(--primary);
  max-width: 900px;
  text-align: left;
  margin: 0;
}

/* Gallery */

/* Gallery */

.property-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 170px);
  gap: 6px;
  margin-bottom: 46px;
}

.property-photo {
  position: relative;
  border: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 0;
  cursor: pointer;
  background: var(--light-bg);
}

.property-photo-main {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.property-photo:nth-child(2) {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}

.property-photo:nth-child(3) {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}

.property-photo:nth-child(4) {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
}

.property-photo:nth-child(5) {
  grid-column: 2 / 3;
  grid-row: 3 / 4;
}

.property-photo-more {
  grid-column: 3 / 4;
  grid-row: 3 / 4;
}

.property-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-photo-more span {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  background: rgba(2, 38, 42, 0.55);
}
/* Overview */

.property-overview {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 26px;
  align-items: stretch;
  margin-bottom: 26px;
}

.property-main-info,
.property-agent-card,
.property-block,
.calculator-card,
.property-contact-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-lg);
}

.property-main-info {
  padding: 34px;
}

.property-main-info h2 {
  font-family: "Inter", sans-serif;
  color: var(--primary);
  font-size: clamp(1.125rem, 2.25vw, 1.84rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 800;
  max-width: none;
  margin-bottom: 14px;
}

.property-subtitle {
  font-size: 20px;
  color: var(--text);
  margin-bottom: 22px;
}

.property-location-large {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  line-height: 1.5;
}

.property-location-large svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: var(--gold);
}

.property-agent-card {
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.status-pill {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(168, 138, 74, 0.12);
  color: var(--gold);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 6px;
}

.property-agent {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.property-agent img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(168, 138, 74, 0.18);
}

.property-agent strong {
  display: block;
  color: var(--primary);
  font-size: 17px;
}

.property-agent span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-top: 4px;
}

.property-agent-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.property-agent-actions .listing-action {
  justify-content: center;
}



/* Specs */

.property-spec-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-bottom: 46px;
}

.property-spec-box {
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--light-bg);
  border: 1px solid var(--line);
}

.property-spec-box span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 8px;
}

.property-spec-box strong {
  color: var(--primary);
  font-size: 15px;
}

.property-spec-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.property-spec-box img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.property-spec-box strong {
  font-size: 14px;
  line-height: 1.2;
}

/* Content */

.property-content-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  align-items: start;
}

.property-content-left {
  display: grid;
  gap: 26px;
}

.property-block {
  padding: 34px;
}

.property-block h2,
.calculator-card h2,
.property-contact-card h2 {
  font-family: "Playfair Display", serif;
  color: var(--primary);
  font-size: clamp(21px, 2.25vw, 31.5px);
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}

.property-block p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.features-grid span {
  padding: 14px 16px;
  border-radius: 999px;
  background: var(--light-bg);
  color: var(--primary);
  font-size: 14px;
  font-weight: 650;
}

.property-address-box {
  display: grid;
  gap: 20px;
}

.map-placeholder {
  min-height: 280px;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(2, 38, 42, 0.24);
  background:
    linear-gradient(135deg, rgba(2, 38, 42, 0.06), rgba(168, 138, 74, 0.08)),
    var(--light-bg);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
  padding: 24px;
}

/* Calculator */

.property-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.calculator-card {
  padding: 28px;
}

.calculator-card h2 {
  font-size: 28px;
}

.calculator-card label {
  display: grid;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
  margin-top: 16px;
  font-size: 14px;
}

.calculator-card input,
.property-contact-form input,
.property-contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 15px 16px;
  font: inherit;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.calculator-card input:focus,
.property-contact-form input:focus,
.property-contact-form textarea:focus {
  border-color: rgba(168, 138, 74, 0.65);
  box-shadow: 0 0 0 4px rgba(168, 138, 74, 0.12);
}

.calculator-btn {
  width: 100%;
  margin-top: 20px;
}

.calculator-results {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.calculator-results div {
  padding: 18px;
  border-radius: var(--radius-sm);
  background: var(--light-bg);
}

.calculator-results span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 6px;
}

.calculator-results strong {
  color: var(--primary);
  font-size: 20px;
}

/* Contact */

.property-contact-section {
  padding-left: 0;
  padding-right: 0;
}

.property-contact-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  padding: 40px;
}

.property-contact-card p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
}

.property-contact-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.property-contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* Similar */

.property-similar-section {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: 0;
  padding-right: 0;
}

.property-similar-section > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.similar-property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.similar-property-card {
  display: grid;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  color: inherit;
  transition: transform .3s ease, box-shadow .3s ease;
}

.similar-property-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.similar-property-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.similar-property-card div {
  padding: 20px;
}

.similar-property-card span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.similar-property-card h3 {
  color: var(--primary);
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.similar-property-card p {
  color: var(--muted);
  margin-bottom: 12px;
}

.similar-property-card strong {
  color: var(--primary);
  font-size: 18px;
}

/* Lightbox */

.property-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(2, 38, 42, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 70px 76px 18px;
}

.property-lightbox.active {
  display: flex;
}

.lightbox-image-wrap {
  width: min(100%, 1080px);
  height: auto;
  max-height: calc(100vh - 110px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image-wrap img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100vh - 110px);
  border-radius: var(--radius-md);
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(0,0,0,0.35);
}

.lightbox-close,
.lightbox-arrow {
  position: fixed;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.08);
  cursor: pointer;
  padding: 0;
}

.lightbox-close {
  top: 22px;
  right: 26px;
  width: 46px;
  height: 46px;
}

.lightbox-close::before,
.lightbox-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transform-origin: center;
}

.lightbox-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.lightbox-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.lightbox-count {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.lightbox-arrow {
  top: 50%;
  width: 54px;
  height: 54px;
  transform: translateY(-50%);
}

.lightbox-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 15px;
  height: 15px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-prev::before {
  left: 52%;
  transform: translate(-50%, -50%) rotate(-135deg);
}

.lightbox-next::before {
  left: 48%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.similar-carousel {
  max-width: 1200px;
  margin: 0 auto;
}

.similar-carousel .property-card img {
  height: 280px;
}

.section-last {
    padding-top: 30px;
    padding-bottom: 1px;
}


.rental-summary-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-lg);
}

.rental-summary-card h2 {
  font-family: "Playfair Display", serif;
  color: var(--primary);
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 22px;
}

.rental-summary-list {
  display: grid;
  gap: 12px;
}

.rental-summary-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius-sm);
  background: var(--light-bg);
}

.rental-summary-list span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.rental-summary-list strong {
  color: var(--primary);
  font-size: 18px;
  font-weight: 900;
  text-align: right;
}

.rental-summary-total {
  background: rgba(168, 138, 74, 0.12) !important;
  border: 1px solid rgba(168, 138, 74, 0.22);
}

.rental-summary-total span,
.rental-summary-total strong {
  color: var(--primary);


}

.calculator-card > h2,
.rental-summary-card > h2 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* =========================
   Insights Page
========================= */

.insights-hero {
  padding: calc(var(--header-height) + 34px) 0 34px;
}

.insights-hero .subpage-hero-inner {
  display: grid;
  justify-items: center;
  text-align: center;
  padding-bottom: 0;
}

.insights-hero h1 {
  margin: 0 auto;
  text-align: center;
}

.insights-hero p {
  max-width: 680px;
  margin: 18px auto 0;
  text-align: center;
}

.insights-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.insights-page-card {
  position: relative;
  display: grid;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(168, 138, 74, 0.18);
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.insights-page-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: rgba(168, 138, 74, 0.36);
}

.insights-page-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--light-bg);
}

.insights-page-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s ease;
}

.insights-page-card:hover .insights-page-image img {
  transform: scale(1.055);
}

.insights-page-body {
  padding: 24px;
  display: grid;
  gap: 14px;
  text-align: center;
  justify-items: center;
}

.insights-page-date {
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(168, 138, 74, 0.1);
  border: 1px solid rgba(168, 138, 74, 0.24);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.insights-page-body h2 {
  max-width: 100%;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  text-align: center;
}

.insights-page-body p {
  max-width: 360px;
  text-align: center;
}

.insights-page-card .explore-link {
  margin-top: 4px;
  transition: transform 0.28s ease;
}

.insights-page-card:hover .explore-link {
  transform: translateX(4px);
}

/*list with us*/
/* =========================
   List Your Property Page
========================= */

.list-property-hero {
  text-align: center;
}

.list-property-hero .subpage-hero-inner {
  display: grid;
  justify-items: center;
}

.list-property-hero p {
  max-width: 720px;
  margin: 18px auto 0;
}

.list-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.list-benefits-grid .trust-card {
  min-height: 260px;
  justify-content: center;
}

.list-benefits-grid .trust-card h3 {
  max-width: 220px;
}

.list-form-section {
  overflow: visible;
}

.list-property-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(168, 138, 74, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.list-form-intro {
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.list-form-intro h2,
.list-form-intro p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.property-contact-form select,
.listing-choice {
  min-height: 54px;
  border: 1px solid rgba(2, 38, 42, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
}

.property-contact-form select {
  width: 100%;
  padding: 0 16px;
  color: var(--primary);
  font-weight: 700;
}

.listing-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 7px;
}

.listing-choice label {
  cursor: pointer;
}

.listing-choice input {
  display: none;
}

.listing-choice span {
  min-height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.listing-choice input:checked + span {
  background: var(--primary);
  color: white;
}

.list-form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.list-form-actions .btn {
  flex: 1;
}

.offplan-page-hero {
  background:
    linear-gradient(135deg, rgba(2, 38, 42, 0.94), rgba(2, 38, 42, 0.78)),
    url("images/villa.jpg") center / cover;
}

.offplan-page-hero h1,
.offplan-page-hero p {
  color: white;
  text-align: center;
}

.offplan-page-hero p {
  color: rgba(255, 255, 255, 0.78);
}

.offplan-page-hero .btn-secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.42);
}

.offplan-info-grid,
.offplan-project-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.offplan-info-grid {
  max-width: 980px;
  margin: 0 auto;
}

.offplan-project-grid .property-card {
  min-width: 0;
  width: 100%;
}

.offplan-project-grid .property-card picture,
.offplan-project-grid .property-card img {
  height: 290px;
}

.offplan-project-grid .property-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}
   
.offplan-info-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-lg);
}

.offplan-info-card h2 {
  font-family: "Playfair Display", serif;
  color: var(--primary);
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin: 0 auto 22px;
  text-align: center;
}

.offplan-info-list {
  display: grid;
  gap: 12px;
}

.offplan-info-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: var(--light-bg);
}

.offplan-info-list span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.offplan-info-list strong {
  color: var(--primary);
  font-size: 16px;
  font-weight: 900;
  text-align: right;
}

.offplan-info-mobile {
  display: none;
}

.offplan-info-desktop {
  margin-top: 24px;
}


















/* =========================
       Tablet + Desktop Navigation
    ========================= */
    @media (min-width: 768px) {
      .category-grid,
      .offplan-grid,
      .trust-grid,
      .team-grid {
        grid-template-columns: repeat(4, 1fr);
      }

      .search-fields {
        grid-template-columns: repeat(3, 1fr);
      }

      .search-fields .field:first-child {
        grid-column: 1 / -1;
      }

      .owners-box,
      .about-grid,
      .contact-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
      }

      .property-card {
        min-width: calc((100% - 36px) / 3);
      }

      .property-card picture,
      .property-card img {
        height: 330px;
      }

      .insights-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .insight-card.empty {
        display: block;
      }

      .footer-grid {
        grid-template-columns: 1.3fr 1fr 1fr 1fr;
      }

      .developer-card {
        width: 220px;
      }

      .desktop-video {
  display: block;
}

.mobile-video {
  display: none;
}
    
/* =========================
       about page
    ========================= */

.about-story-grid {
  grid-template-columns: 1fr 1fr;
}

.founder-profile-grid {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
}


.values-grid,
.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.client-grid {
  grid-template-columns: repeat(5, 1fr);
}

/*meet the team page*/
  .team-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Careers page */
.careers-benefits-grid,
.careers-jobs-grid,
.careers-process-grid {
  grid-template-columns: repeat(2, 1fr);
}

.careers-culture-grid {
  grid-template-columns: 1fr 1fr;
}

/* residential listing page*/
.listing-card {
  display: grid;
  grid-template-columns: minmax(320px, 46%) minmax(0, 1fr);
  align-items: stretch;
}

.listing-image {
  min-height: 280px;
}

.listing-content {
  padding: 24px;
}

.listing-footer {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.listing-actions {
  justify-content: flex-end;
}

.insights-page-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.insights-page-card:last-child {
  grid-column: 1 / -1;
  max-width: 520px;
  width: 100%;
  justify-self: center;
}

}

    























@media (min-width: 1200px) {
      :root {
        --section-padding: 80px;
      }

      .hamburger,
      .mobile-menu {
        display: none;
      }

      .desktop-nav,
      .header-actions {
        display: flex;
        align-items: center;
      }

      .desktop-nav {
  gap: 0;
  flex: 1;
  justify-content: center;
}

      .nav-item {
        position: relative;
      }

      .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 12px 7px;
  border-radius: 999px;
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 0.25s ease, background 0.25s ease;
}

      .nav-link:hover {
        color: var(--gold);
        background: rgba(168, 138, 74, 0.08);
      }

      .submenu {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 230px;
        display: grid;
        gap: 4px;
        padding: 12px;
        border-radius: 18px;
        border: 1px solid rgba(168, 138, 74, 0.16);
        background: rgba(255, 255, 255, 0.94);
        backdrop-filter: blur(16px);
        box-shadow: var(--shadow-soft);
        opacity: 0;
        pointer-events: none;
        transform: translateY(8px);
        transition: 0.25s ease;
      }

      .nav-item:hover .submenu {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
      }

      .submenu a {
        padding: 10px 12px;
        border-radius: 12px;
        color: var(--primary);
        font-size: 0.82rem;
        font-weight: 700;
      }

      .submenu a:hover {
        background: var(--light-bg);
        color: var(--gold);
      }

      .header-actions {
        gap: 10px;
      }

      .header-actions .btn {
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.76rem;
  white-space: nowrap;
}

.team-grid {
  max-width: 1050px;
  margin: 0 auto;
  gap: 18px;
}

/*meet the team*/
  .team-page-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .team-member-card {
    max-width: 310px;
    width: 100%;
    justify-self: center;
  }

  /* Careers page */
.careers-benefits-grid,
.careers-jobs-grid,
.careers-process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.careers-culture-image {
  width: min(100%, 520px);
}

/* residential listing page*/
  .listing-grid {
    max-width: 980px;
    margin: 0 auto;
  }

  .listing-card {
    grid-template-columns: minmax(300px, 43%) minmax(0, 1fr);
  }

  .listing-image {
    min-height: 280px;
  }

  .listing-content {
    padding: 24px;
    gap: 11px;
  }

  .listing-price-row h2 {
    font-size: 1.75rem;
  }

  
  .property-main-info .property-location-large {
    justify-content: flex-start;
  }

  .insights-page-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.insights-page-card:last-child {
  grid-column: auto;
  max-width: none;
}

.insights-page-body {
  padding: 28px;
}

.list-property-card {
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
}

.list-form-actions {
  align-items: center;
}

.list-form-actions .btn {
  min-width: 190px;
}

.offplan-project-grid {
  grid-template-columns: repeat(4, 1fr);
}

.offplan-project-grid .property-card picture,
.offplan-project-grid .property-card img {
  height: 300px;
}

    }

    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    @media (min-width: 1280px) {
      .container {
        width: min(100% - 64px, 1320px);
      }

      .nav-link {
        padding: 12px 13px;
      }

      
    }


 








/* widoczny tylko na mobile */
@media (max-width: 767px) {
  .call-button-mobile {
    display: block;
  }

    .contact-card {
    text-align: center;
  }

  .contact-line {
    margin: 14px auto 24px;
  }

  .contact-items {
    justify-items: center;
  }

  .socials {
    justify-content: center;
  }

    .footer,
  .footer-grid,
  .footer-grid > div {
    text-align: center;
  }

  .footer-links {
    justify-items: center;
  }

  .socials {
    justify-content: center;
  }

   .footer .brand {
    justify-content: center;
  }

   .footer {
    padding-bottom: 85px;
  }

   .hero-content {
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 25%;
  }

  .hero-content > .container {
    margin-top: 0;
  
}

   .category-grid,
   .trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .category-card {
    width: 100%;
    aspect-ratio: 1 / 1;
    min-height: 0;
  }

  .category-card picture,
  .category-card img {
    width: 100%;
    height: 100%;
  }

  .insights-grid {
  grid-template-columns: 1fr;
  gap: 18px;
}

.insight-card picture {
  width: 250px;
  height: 250px;
}

.insight-card:nth-child(n+3) {
  display: none;
}

 .offplan-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .offplan-card:nth-child(n+3) {
    display: none;
  }

   .category-grid {
    justify-items: center;
  }

  .category-card {
  max-width: var(--mobile-card);
}

    .about-image {
    max-width: 400px; 
    width: 100%;
    margin: 0 auto;
  }

  .property-card {
  min-width: 100%;
  max-width: var(--mobile-card);
  width: 100%;
}

  .carousel-window {
    max-width: var(--mobile-card);
    margin: 0 auto;
    overflow: hidden;
  }

    .offplan-grid {
    justify-items: center;
  }

  .offplan-card {
    width: 100%;
    max-width: var(--mobile-card);
    margin: 0 auto;
  }

  .team-grid {
    max-width: var(--mobile-card);
    margin: 0 auto;
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-card p {
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.insight-card {
  width: 100%;
  max-width: var(--mobile-card);
  margin: 0 auto;
}

/* =========================
       about us page
    ========================= */
.subpage-hero {
  padding: calc(var(--header-height) + 50px) 0 50px;
}

.value-card,
.process-card,
.client-card {
  max-width: var(--mobile-card);
  width: 100%;
  margin: 0 auto;
}

.client-grid {
  grid-template-columns: 1fr;
}

.about-side-image {
  width: min(100%, 420px);
  aspect-ratio: 4 / 5;
  margin: 0 auto;
}

.about-side-image picture,
.about-side-image img {
  width: 100%;
  height: 100%;
}

.about-side-image img {
  object-fit: cover;
  object-position: center;
}

/*meet the team page*/
.team-page-grid {
    max-width: var(--mobile-card);
    margin: 0 auto;
  }

  .team-member-card {
    width: 100%;
  }

  /* Careers page*/
.careers-benefit-card,
.career-job-card,
.careers-process-card,
.careers-culture-card {
  max-width: var(--mobile-card);
  width: 100%;
  margin: 0 auto;
}

.careers-culture-image {
  width: min(100%, 420px);
  margin: 0 auto;
}


/*residential listing page*/
.listing-grid {
  max-width: var(--mobile-card);
  margin: 0 auto;
}

.listing-card {
  border-radius: var(--radius-md);
}

.listing-image {
  aspect-ratio: 16 / 11;
}

.listing-price-row {
  display: grid;
  gap: 8px;
}

.listing-price-row span {
  width: fit-content;
  margin-top: 0;
}

.listing-footer {
  align-items: start;
}

.listing-actions {
  width: 100%;
}

.listing-action {
  flex: 1;
  justify-content: center;
}

  .listings-hero {
    padding: calc(var(--header-height) + 38px) 0 32px;
  }

  .listings-hero h1 {
    font-size: clamp(1.85rem, 9vw, 2.6rem);
  }

  .listing-price-row h2 {
    font-size: clamp(1.15rem, 6vw, 1.6rem);
    letter-spacing: -0.035em;
  }

  /* property single page */
.property-single-section {
  padding-top: calc(var(--header-height) + 15px);
}

.property-gallery {
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 8px;
  margin-bottom: 28px;
}

.property-photo-main {
  grid-column: 1 / -1;
  grid-row: 1;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
}

.property-photo:nth-child(2),
.property-photo:nth-child(3),
.property-photo:nth-child(4),
.property-photo-more {
  grid-column: auto;
  grid-row: 2;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
}

.property-photo:nth-child(5) {
  display: none;
}

.property-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-photo-more span {
  font-size: 11px;
  line-height: 1.25;
  padding: 6px;
}

.property-overview {
    grid-template-columns: 1fr;
    gap: 16px;
}
.property-main-info,
.property-agent-card,
.property-block,
.calculator-card,
.property-contact-card {
  border-radius: 24px;
}

.property-main-info,
.property-block,
.calculator-card {
  padding: 24px;
}

.property-main-info {
  width: 100%;
  text-align: center;
}

.property-agent-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}

.status-pill {
  margin: 0 auto 20px;
}

.property-agent {
  margin-bottom: 20px;
}

.property-spec-grid {
  grid-template-columns: repeat(2, 1fr);
}

.features-grid {
  grid-template-columns: 1fr;
}

.property-contact-card {
  grid-template-columns: 1fr;
  padding: 26px;
}

.form-row {
  grid-template-columns: 1fr;
}

.similar-property-grid {
  grid-template-columns: 1fr;
}

.property-lightbox {
  padding: 70px 18px 34px;
}

.lightbox-arrow {
  width: 42px;
  height: 42px;
  font-size: 34px;
}

.lightbox-prev {
  left: 10px;
}

.lightbox-next {
  right: 10px;
}

.lightbox-image-wrap {
  height: auto;
  max-height: calc(100vh - 110px);
}

.property-spec-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 30px;
}

.property-spec-box {
  padding: 14px 8px;
  min-height: 92px;
}

.property-spec-box img {
  width: 22px;
  height: 22px;
}

.property-spec-box strong {
  font-size: 12px;
}

.property-agent-actions {
  grid-template-columns: 1fr;
}

.property-main-info h2 {
  font-size: clamp(1.3rem, 6vw, 1.6rem);
}

.property-subtitle {
  font-size: 17px;
}

.property-photo-more span {
  font-size: 15px;
}

.property-spec-box img {
  width: 24px;
  height: 24px;
}

.property-spec-box strong {
  font-size: 13px;
}

  .property-single-head {
    margin-bottom: 20px;
    text-align: center;
  }

  .property-single-head h1 {
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
    font-size: clamp(1.35rem, 6vw, 1.8rem);
    line-height: 1.15;
  }



.property-agent {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.property-agent div {
  text-align: center;
}

.property-agent img {
  margin: 0 auto;
}

.property-content-grid {
    grid-template-columns: 1fr;
    gap: 20px;
}

.property-content-left {
    width: 100%;
}

.property-block {
    width: 100%;
}

.property-block h2 {
    text-align: center;
}

.property-block p {
    text-align: left;
}

.features-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.features-grid span {
  padding: 12px 8px;
  border-radius: 14px;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  line-height: 1.25;
}

.calculator-card h2 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.property-contact-card h2 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.property-contact-card p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.lightbox-image-wrap{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.lightbox-arrow{
    position:fixed;
    top:50%;
    z-index:1002;
}

.lightbox-prev{
    left:8%;
    transform:translate(-50%, -50%);
}

.lightbox-next{
    right:8%;
    transform:translate(50%, -50%);
}

   .similar-carousel{
        position: relative;
    }

    .similar-carousel .carousel-window{
        overflow: visible;
    }

    .similar-carousel .carousel-btn{
        top: 34%;
        transform: translateY(-50%);
    }

    .similar-carousel .carousel-btn.prev{
        left: -8px;
    }

    .similar-carousel .carousel-btn.next{
        right: -8px;
    }

      .similar-carousel .carousel-window {
    max-width: var(--mobile-card);
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
  }

  .similar-carousel .property-card {
    min-width: 100%;
    max-width: 100%;
  }

  .similar-carousel .carousel-btn {
    top: 34%;
    transform: translateY(-50%);
    z-index: 10;
  }

  .similar-carousel .carousel-btn.prev {
    left: calc(50% - min(50vw - 16px, 210px));
  }

  .similar-carousel .carousel-btn.next {
    right: calc(50% - min(50vw - 16px, 210px));
  }

     .property-main-info .property-location-large {
        justify-content: center;
    }
.rental-summary-card {
  padding: 24px;
  border-radius: 24px;
}

.rental-summary-card h2 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.rental-summary-list div {
  padding: 16px;
}

.rental-summary-list strong {
  font-size: 16px;
}

.list-property-hero {
  padding: calc(var(--header-height) + 46px) 0 42px;
}

.list-property-hero h1 {
  font-size: clamp(2rem, 10vw, 2.8rem);
}

.list-property-hero p {
  max-width: 360px;
}

.list-benefits-grid {
  grid-template-columns: 1fr;
  max-width: var(--mobile-card);
  margin: 0 auto;
}

.list-property-card {
  grid-template-columns: 1fr;
  padding: 26px;
}

.list-form-actions {
  flex-direction: column;
}

.list-form-actions .btn {
  width: 100%;
}

.offplan-page-hero {
  padding: calc(var(--header-height) + 60px) 0 60px;
}

.offplan-page-hero .hero-actions {
  width: 100%;
}

.offplan-page-hero .btn {
  width: min(100%, 280px);
}

.offplan-info-grid,
.offplan-project-grid {
  max-width: var(--mobile-card);
  margin: 0 auto;
}

.offplan-project-grid .property-card picture,
.offplan-project-grid .property-card img {
  height: 270px;
}

.offplan-info-desktop {
  display: none;
}

.offplan-info-mobile {
  display: block;
}

.offplan-info-card {
  padding: 24px;
}

.offplan-info-list div {
  padding: 14px 16px;
}

.offplan-info-list strong {
  font-size: 15px;
}

}























@media (min-width: 768px) and (max-width: 1199px) {
    .about-grid{
    grid-template-columns: minmax(340px,420px) minmax(300px,360px);
    justify-content: center;
    align-items: center;
    gap: 32px;
  }

  .about-image{
    width: 360px;
    height: 420px;
    min-height: 0;
    overflow: hidden;
  }

  .about-image picture,
  .about-image img{
    width: 100%;
    height: 100%;
  }

  .about-image img{
    object-fit: cover;
    object-position: center;
  }

   .property-card {
    min-width: calc((100% - 36px) / 3);
  }

  .property-card picture {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    overflow: hidden;
  }

  .property-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

    .offplan-card picture {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    overflow: hidden;
  }

  .offplan-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

   .insight-card {
    padding: 18px;
  }

  .insight-card picture {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    overflow: hidden;
    margin: 0 0 18px;
  }

  .insight-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .insight-body h3 {
    font-size: 1.35rem;
  }

  /* meet the team*/
  .team-page-grid {
    grid-template-columns: repeat(2, minmax(0, 360px));
    justify-content: center;
    gap: 22px;
  }

  .team-member-card {
    width: 100%;
    max-width: 360px;
    justify-self: center;
  }

  /*single property page*/
  /* property single page */


.property-overview,
.property-content-grid {
  grid-template-columns: 1fr;
}

.property-sidebar {
  position: static;
}

.property-spec-grid {
  grid-template-columns: repeat(3, 1fr);
}

.property-agent-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.property-agent {
  margin-bottom: 0;
}

    .property-single-head{
        text-align: center;
    }

    .property-single-head h1{
        text-align: center;
        margin: 0 auto;
    }

        .property-main-info{
        text-align:center;
    }

    .property-main-info .status-pill{
        display:inline-flex;
        margin:0 auto 16px;
    }

    .property-main-info h2{
        text-align:center;
    }

    .property-main-info .property-subtitle{
        text-align:center;
    }

    .property-location-large{
        justify-content:center;
    }

    /* AGENT */
    .property-agent{
        flex-direction:column;
        justify-content:center;
        align-items:center;
        text-align:center;
        gap:12px;
    }

    .property-agent img{
        margin:0 auto;
    }

    .property-agent div{
        text-align:center;
    }

    .property-block h2{
    text-align:center;
}

.property-main-info .property-location-large {
        justify-content: center;
    }

/*list with us*/
.list-benefits-grid {
  grid-template-columns: repeat(2, minmax(0, 360px));
  justify-content: center;
}

.list-property-card {
  grid-template-columns: 1fr;
  max-width: 820px;
  margin: 0 auto;
}

.list-form-actions {
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
}

.offplan-info-grid {
  grid-template-columns: repeat(3, 1fr);
}

.offplan-project-grid {
  grid-template-columns: repeat(2, 1fr);
}

.offplan-info-desktop {
  display: none;
}

.offplan-info-mobile {
  display: block;
}

.offplan-info-card {
  padding: 24px;
}

.offplan-info-list div {
  padding: 14px 16px;
}

.offplan-info-list strong {
  font-size: 15px;
}


}





















@media (min-width: 1600px) {
  .container {
    max-width: 1480px;
  }

  h1 {
    max-width: 1100px;
  }

  h2 {
    max-width: 900px;
  }

  .founder-profile-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  }

  .founder-profile-image {
  width: min(100%, 520px);
}

.about-side-image {
  width: min(100%, 640px);
}

.insights-page-grid {
  gap: 34px;
}

}









@media (min-width: 768px) and (max-width: 1199px) {
  .property-content-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .property-sidebar {
    position: static !important;
    width: 100% !important;
  }

  .property-content-left,
  .property-block,
  .calculator-card {
    width: 100% !important;
  }

  .property-block h2,
  .calculator-card h2 {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
  }
}

