/* =========================
       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;
    }

    * {
      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.8rem, 8vw, 5.8rem);
      max-width: 920px;
    }

    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: 88px 16px auto 16px;
      z-index: 999;
      padding: 24px;
      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;
    }

    .mobile-menu.open {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .mobile-links {
      display: grid;
      gap: 8px;
      margin-bottom: 20px;
    }

    .mobile-link {
      padding: 15px 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;
    }

    .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;
}

    /* =========================
       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 p {
      max-width: 650px;
      color: rgba(255, 255, 255, 0.78);
      margin: 18px auto 0;
      text-align: center;
    }

    .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;
}

    .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;
      min-height: 260px;
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      isolation: isolate;
    }

    .category-card picture,
    .category-card img {
      height: 100%;
    }

    .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: 190px;
    }

    .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: 46px;
      height: 46px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--gold);
      border: 1px solid rgba(168, 138, 74, 0.35);
      margin: 0 auto 18px;
      font-size: 1.15rem;
    }

    .trust-card h3 {
      font-size: 1.5rem;
      margin-bottom: 10px;
    }

    /* =========================
       Owners Section
    ========================= */
    .owners-box {
      display: grid;
      gap: 26px;
      padding: 28px;
      background: var(--primary);
      border-radius: var(--radius-lg);
      overflow: hidden;
      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;
    }

    .owners-content p {
      color: rgba(255, 255, 255, 0.72);
    }

    .check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0;
  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;
      min-height: 280px;
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-soft);
    }

    .team-card picture,
    .team-card img {
      height: 100%;
    }

    .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.empty {
      min-height: 250px;
      display: none;
      opacity: 0.45;
      background:
        linear-gradient(120deg, rgba(168, 138, 74, 0.07), transparent),
        rgba(255, 255, 255, 0.62);
    }

    .insight-card picture,
    .insight-card img {
      height: 150px;
    }

    .insight-body {
  padding: 18px;
  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;
    }

    .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
    ========================= */
    .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 {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

    /* =========================
       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;
}


    }

    @media (min-width: 1024px) {
      :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;
}
    }

    @media (min-width: 1280px) {
      .container {
        width: min(100% - 64px, 1320px);
      }

      .nav-link {
        padding: 12px 13px;
      }

      
    }


    /* =========================
   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;
}

/* 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;
  }
}

.floating-btn {
  transition: opacity 0.3s ease;
}


.floating-btn.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}