    :root {
      --max-content-width: 1320px;
      --text-light: #ffffff;
      --bg-dark: #000000;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background-color: var(--bg-dark);
      color: var(--text-light);
      min-height: 100vh;
    }

    a { color: inherit; text-decoration: none; }

    /* ===== HEADER (desktop base) ===== */

    .site-header {
      position: fixed;
      z-index: 50;
      inset: 0 0 auto 0;
      display: flex;
      justify-content: center;
      padding: 24px 70px;
      background: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,0.4), transparent);
    }

    .header-inner {
      max-width: var(--max-content-width);
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
    }

    .logo-area { display: flex; align-items: center; }

    .logo-mark {
      width: 140px;
      height: 40px;
      /*background: url("https://www.royaloasis.co.ae/palm-central/images/royaloasislogo.png") left center / contain no-repeat;*/
    }

    .main-nav {
      flex: 1;
    }

    .main-nav ul {
      list-style: none;
      display: flex;
      justify-content: flex-start;
      gap: 42px;
      font-size: 14px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .header-cta {
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 26px;
      /* border-radius: 999px; */
      border: 1px solid #838383;
      background: #000;
      font-size: 13px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      white-space: nowrap;
      border-radius: 6px;
    }

    .header-cta-icon {
      width: 18px;
      height: 18px;
      border-radius: 999px;
      /* border: 1px solid #fff; */
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
    }

.header-cta:hover{
    background: #fff;
    color: #000;
}

    /* ===== Hero (desktop base) ===== */

    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: stretch;
      background: url("../images/Emaar-com.jpg") center center / cover no-repeat fixed;
      color: #fff;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        180deg,
        rgba(0,0,0,0.82) 0%,
        rgba(0,0,0,0.3) 45%,
        rgba(0,0,0,0.85) 100%
      );
      z-index: 1;
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      max-width: var(--max-content-width);
      width: 100%;
      padding: 120px 70px 70px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 24px;
    }

    .hero-logo-row {
      margin-bottom: 10px;
    }

    .hero-logo {
      width: 210px;
      height: 56px;
      /*background: url("images/logo-binghatti.svg") left center / contain no-repeat;*/
    }

    .hero-kicker {
      font-size: 20px;
      font-weight: 400;
      margin-bottom: 8px;
    }

    .hero-title {
      max-width: 780px;
      font-size: 38px;
      font-weight: 500;
      line-height: 1.22;
    }

    .hero-title span { font-weight: 700; }

    .hero-subtitle {
      font-size: 16px;
      margin-top: 8px;
    }

    .hero-cta-row {margin-top: 20px;width: 50%;}

    .btn-primary {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      padding: 18px 42px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.7);
      background: transparent;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-size: 13px;
    }

    .hero-scroll {
      margin-top: 70px;
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      font-size: 13px;
    }

    .hero-scroll-icon {
      width: 56px;
      height: 92px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.6);
      display: inline-flex;
      align-items: flex-start;
      justify-content: center;
      padding-top: 20px;
    }

    .hero-scroll-icon span {
      font-size: 18px;
      animation: bounce 1.3s infinite;
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); opacity: .8; }
      50% { transform: translateY(6px); opacity: 1; }
    }

    /* ===== MOBILE (matches screenshot) ===== */

    .nav-toggle {
      display: none;
      border: none;
      background: transparent;
      width: 34px;
      height: 34px;
      padding: 0;
      cursor: pointer;
    }

    .nav-toggle span {
      display: block;
      width: 26px;
      height: 3px;
      background: #fff;
      border-radius: 10px;
      position: relative;
    }

    .nav-toggle span::before,
    .nav-toggle span::after {
      content: "";
      position: absolute;
      left: 0;
      width: 26px;
      height: 3px;
      background: #fff;
      border-radius: 10px;
    }

    .nav-toggle span::before { top: -7px; }
    .nav-toggle span::after  { top:  7px; }

    @media (max-width: 768px) {

      .site-header {
        padding: 22px 18px;
        background: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);
      }

      .logo-mark {
        width: 170px;
        height: 46px;
      }

      .header-cta { display: none; }

      .nav-toggle { display: block; }

      /* Fullâ€‘screen overlay menu when opened */
      .main-nav {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.96);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease;
      }

      .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        font-size: 18px;
        letter-spacing: 0.18em;
      }

      .header-inner.nav-open .main-nav {
        opacity: 1;
        pointer-events: auto;
      }

      .hero {
        background-attachment: scroll; /* mobile perf */
        background-position: center top;
      }

      .hero-inner {
        padding: 140px 26px 80px;
        align-items: center;
        text-align: center;
      }

      /* no large logo inside hero â€“ only header logo as in screenshot */
      .hero-logo-row { display: none; }

      .hero-kicker {
        font-size: 18px;
        margin-bottom: 16px;
      }

      .hero-title {
        font-size: 30px;
        text-transform: uppercase;
        letter-spacing: 0.06em;
      }

      .hero-subtitle {
        font-size: 17px;
        margin-top: 28px;
      }

      .hero-cta-row {
        width: 100%;
        margin-top: 40px;
        display: flex;
        justify-content: center;
      }

      .btn-primary {
        width: 100%;
        max-width: 360px;
        border-radius: 22px;
        padding-block: 18px;
        font-size: 13px;
        letter-spacing: 0.2em;
      }

      .hero-scroll {
        margin-top: 70px;
      }

      .hero-scroll-icon {
        width: 54px;
        height: 90px;
      }
    }

    @media (max-width: 480px) {
      .hero-title { font-size: 28px; }
      .hero-subtitle { font-size: 16px; }
    }
    
    
    
/* ================= BASE (MOBILEâ€‘FIRST) ================= */

    .about-section {
      padding: 2px 0;
      background:
        linear-gradient(180deg, rgba(0,0,0,0.95), rgba(0,0,0,0.98)),
        url("images/about-bg.jpg") center/cover no-repeat;
      color: #fff;
    }

    .about-card {
      margin: 0 16px;
      padding: 40px 20px 32px;
      background: rgba(0,0,0,0.96);
      border-radius: 0;
      border: 1px solid rgba(255,255,255,0.05);
      box-shadow: 0 20px 60px rgba(0,0,0,0.85);
    }

    .about-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      max-width: 430px;
      margin: 0 auto;
    }

    /* Top text */

    .about-kicker {
      font-size: 12px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: #f1f1f1;
      margin-bottom: 16px;
    }

    .about-heading {
      font-size: 22px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-bottom: 26px;
    }

    .about-heading span {
      font-weight: 700; /* "ABOUT" bold */
    }

    .about-text {
      font-size: 13px;
      line-height: 1.9;
      color: var(--text-muted);
      margin-bottom: 16px;
    }

    /* Image */

    .about-image-wrapper {
      width: 100%;
      margin: 28px 0 24px;
    }

    .about-image {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 0;
      box-shadow: 0 18px 40px rgba(0,0,0,0.9);
    }

    /* Divider line */

    .about-divider {
      width: 100%;
      height: 1px;
      background: rgba(255,255,255,0.15);
      margin: 26px 0;
    }

    /* Stats */

    .about-stats {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 32px;
      align-items: center;
    }

    .about-stat {
      text-align: center;
    }

    .about-stat-icon {
      font-size: 26px;
      margin-bottom: 10px;
      opacity: 0.9;
    }

    .about-stat-title {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 6px;
    }

    .about-stat-text {
      font-size: 13px;
      line-height: 1.7;
      color: var(--text-muted);
    }

    /* Bottom CTA button */

    .about-cta {
      width: 100%;
      margin-top: 24px;
    }

    .about-btn {
      display: block;
      width: 100%;
      padding: 14px 18px;
      text-align: center;
      text-transform: uppercase;
      letter-spacing: 0.22em;
      font-size: 11px;
      border-radius: 6px;
      border: 1px solid rgba(255,255,255,0.7);
      background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(0,0,0,0.4));
      box-shadow:
        0 0 0 1px rgba(255,255,255,0.25),
        0 6px 14px rgba(0,0,0,0.9);
    }

    .about-btn:hover {
      background: linear-gradient(180deg, rgba(255,255,255,0.22), rgba(0,0,0,0.5));
    }

    /* ================= DESKTOP ENHANCEMENT ================= */

    @media (min-width: 900px) {
      .about-section {
        padding: 40px 50px 40px;
        background-attachment: fixed;
      }

      .about-card {
        max-width: var(--max-width);
        margin: 0 auto;
        padding: 0;
        background: transparent;
        border: none;
        box-shadow: none;
      }

      .about-inner {
        max-width: 100%;
        display: grid;
        grid-template-columns: minmax(0,1.3fr) minmax(0,1fr);
        column-gap: 70px;
        align-items: flex-start;
        text-align: left;
      }

      .about-main {
        grid-column: 1;
      }

      .about-image-wrapper {
        grid-column: 2;
        margin: 0;
        align-self: center;
      }

      .about-image {
        max-width: 420px;
        margin-left: auto;
      }

      .about-divider,
      .about-stats,
      .about-cta {
        grid-column: 1 / -1;
      }

      .about-stats {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 40px;
      }

      .about-stat {
        max-width: 220px;
        text-align: left;
      }

      .about-cta {
        max-width: 360px;
        padding-top: 10px;
      }

      .about-btn {
        width: 100%;
      }
    }
    
    
    /* ===================== PROJECTS SECTION ===================== */

    .projects-section {
      padding: 10px 30px 10px;
      background:
        linear-gradient(180deg, #050505 0%, #050505 100%),
        url("images/projects-bg.jpg") center/cover no-repeat;
    }

    .projects-inner {
      max-width: var(--max-width);
      margin: 0 auto;
    }

    /* Header */

    .projects-header {
      margin-bottom: 38px;
    }

    .projects-kicker {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      margin-bottom: 10px;
      opacity: 0.9;
    }

    .projects-title {
      font-size: 26px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      margin-bottom: 8px;
    }

    .projects-title span {
      font-weight: 700;
    }

    .projects-subtitle {
      font-size: 13px;
      color: var(--text-muted);
      max-width: 520px;
      line-height: 1.6;
    }

    /* List */

    .projects-list {
      display: flex;
      flex-direction: column;
      gap: 54px;
    }

    .project {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .project-media {
      position: relative;
      border-radius: 0;
      overflow: hidden;
      background: #111;
      box-shadow: 0 20px 60px rgba(0,0,0,0.9);
    }

    .project-media img {
      display: block;
      width: 100%;
      height: auto;
    }

    /* fake slider arrows for look */
    .project-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 32px;
      height: 32px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.7);
      background: rgba(0,0,0,0.55);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
    }
    .project-arrow--left  { left: 14px; }
    .project-arrow--right { right: 14px; }

    .project-body {
      padding: 10px 4px 0;
    }

    .project-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 8px 16px;
      border-radius: 6px;
      background: #fff;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      margin-bottom: 10px;
      color: #000;
    }

    .project-name {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .project-location {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 18px;
      max-width: 400px;
    }

    /* Specs */

    .project-specs {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 18px;
      font-size: 14px;
    }

    .project-spec-row {
      display: flex;
      justify-content: left;
      gap: 50px;
      flex-wrap: wrap;
      display: flex;
      /* gap: 11px; */
      align-items: center;
    }

    .project-spec {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--text-muted);
      white-space: nowrap;
    }

    .project-spec strong {
      color: #fff;
      font-weight: 500;
    }

    .project-spec-icon {
      font-size: 14px;
      opacity: 0.9;
    }

    /* CTAs */

    .project-ctas {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .project-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 18px;
      border-radius: 6px;
      border: 1px solid var(--border-soft);
      background: transparent;
      font-size: 12px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      width: 100%;
    }

    .project-btn.primary {
      background: rgba(255,255,255,0.06);
    }

    /* ===================== DESKTOP LAYOUT ===================== */

    @media (min-width: 992px) {
      .projects-section {
        padding: 90px 40px 110px;
      }

      .projects-header {
        margin-bottom: 40px;
      }

      .projects-title {
        font-size: 30px;
      }

      .projects-subtitle {
        font-size: 14px;
      }

      .projects-list {
        gap: 70px;
      }

      .project {
        display: grid;
        grid-template-columns: minmax(0,1.1fr) minmax(0,1fr);
        column-gap: 54px;
        align-items: center;
      }

      .project-body {
        padding: 4px 0 0;
      }

      .project-ctas {
        flex-direction: row;
        gap: 14px;
      }

      .project-btn {
        width: auto;
        min-width: 200px;
      }

      /* alternate image position */
      .project--image-right .project-media {
        order: 2;
      }
      .project--image-right .project-body {
        order: 1;
      }
    }

    /* ===================== SMALL SCREENS ===================== */

    @media (max-width: 480px) {
      .projects-section {
        padding-inline: 20px;
      }

      .projects-header {
        margin-bottom: 28px;
      }

      .projects-title {
        font-size: 20px;
      }

      .projects-subtitle {
        font-size: 12px;
      }

      .project-body {
        padding-inline: 2px;
      }

      .project-name {
        font-size: 18px;
      }

      .project-location {
        font-size: 12px;
      }

      .project-spec {
        font-size: 12px;
        white-space: normal;
      }
    }
    
    
    /* =============== SECTION =============== */

    .why-section {
      background: var(--bg-main);
      padding: 56px 16px 10px;
      display: flex;
      justify-content: center;
    }

    .why-inner {
      width: 100%;
      max-width: var(--max-width);
    }

    /* Header */

    .why-eyebrow {
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin-bottom: 8px;
      color: var(--text-main);
    }

    .why-heading {
      font-size: 26px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      margin-bottom: 26px;
    }

    .why-heading span {
      font-weight: 700;          /* "WHY" bold */
    }

    /* Grid */

    .why-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .why-card {
      background: linear-gradient(180deg, var(--card-bg-top), var(--card-bg-bottom));
      /* border-radius: 14px; */
      border: 1px solid var(--card-border);
      padding: 22px 24px 20px;
      display: flex;
      align-items: flex-start;
      gap: 18px;
      border-bottom: 1px solid #e3e3e321;
    }

    .why-icon {
      flex-shrink: 0;
      width: 30px;
      height: 30px;
      border-radius: 999px;
      border: 1px solid #ffffff40;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      opacity: 0.9;
      margin-top: 4px;
    }

    .why-content {
      flex: 1;
    }

    .why-title {
      font-size: 16px;
      font-weight: 500;
      margin-bottom: 6px;
    }

    .why-text {
      font-size: 13px;
      line-height: 1.7;
      color: var(--text-muted);
    }

    /* =============== DESKTOP (matches screenshot) =============== */

    @media (min-width: 1024px) {
      .why-section {
        padding: 80px 70px 90px;
      }

      .why-heading {
        font-size: 32px;
        margin-bottom: 34px;
      }

      .why-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)); /* 3 cards per row */
        column-gap: 22px;
        row-gap: 22px;
      }

      .why-card {
        padding: 26px 32px 24px;
      }

      .why-title {
        font-size: 17px;
      }

      .why-text {
        font-size: 14px;
      }
    }

    /* Small Phones â€“ tighten spacing slightly */

    @media (max-width: 480px) {
      .why-section {
        padding-inline: 12px;
      }

      .why-card {
        padding-inline: 18px;
      }
    }
    
    /* Mobile: center WHY header */
@media (max-width: 768px) {
  .why-header {
    text-align: center;
  }

  /* optional: tighten spacing a bit */
  .why-heading {
    margin-bottom: 20px;
  }
}


/* ============ MAP SECTION ============ */

    .map-section {
      background: var(--bg-main);
      display: flex;
      justify-content: center;
    }

    .map-inner {
      width: 100%;
      max-width: var(--max-width);
    }

    /* HEADER */

    .map-header {
      padding: 54px 70px 28px;
      background: #000;
    }

    .map-eyebrow {
      font-size: 13px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .map-title {
      font-size: 32px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      white-space: nowrap;  /* desktop: single line, like screenshot */
    }

    .map-title span {
      font-weight: 700;       /* "WHERE" bold */
    }

    /* MAP IMAGE */

    .map-image-wrap {
      width: 100%;
      background: #050505;
    }

    .map-image-wrap img {
      display: block;
      width: 100%;
      height: auto;
    }

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

    /* Tablet + mobile */
    @media (max-width: 900px) {
      .map-header {
        padding: 46px 24px 26px;
        text-align: center;
      }

      .map-title {
        font-size: 26px;
        white-space: normal;   /* allow wrap into 2â€“3 lines */
        line-height: 1.25;
      }
    }

    /* Small phones */
    @media (max-width: 600px) {
      .map-header {
        padding: 40px 18px 24px;
      }

      .map-title {
        font-size: 22px;
        letter-spacing: 0.16em;
      }

      .map-eyebrow {
        font-size: 12px;
      }
    }
    
    /* ================== FAQ SECTION ================== */

    .faq-section {
      padding: 70px 24px 90px;
      display: flex;
      justify-content: center;
    }

    .faq-inner {
      width: 100%;
      max-width: var(--max-width);
    }

    /* Header row */

    .faq-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      margin-bottom: 32px;
    }

    .faq-header-left {}

    .faq-title {
      font-size: 40px;
      font-weight: 300;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .faq-header-right {
      display: flex;
      align-items: center;
      gap: 32px;
      font-size: 13px;
    }

    .faq-support {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--text-muted);
    }

    .faq-support-icon {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      border: 2px solid #000;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
    }

    .faq-support-main {
      font-weight: 600;
      margin-bottom: 2px;
      color: #111;
    }

    .faq-support-sub {
      font-size: 12px;
    }

    .faq-cta-btn {
      padding: 14px 32px;
      border-radius: 6px;
      border: 1px solid #111111;
      background: #ffffff;
      font-size: 13px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    /* Accordion container */

    .faq-accordion {
      border-left: 1px solid var(--border);
      border-right: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .faq-item {
      border-top: 1px solid var(--border);
      background: var(--bg-row);
    }

    .faq-question {
      width: 100%;
      padding: 18px 26px;
      background: #ffffff;
      border: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      text-align: left;
      cursor: pointer;
      font-size: 13px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-weight: 600;
    }

    .faq-question-text {
      flex: 1;
      padding-right: 12px;
      /* letter-spacing: 2px; */
    }

    .faq-toggle-icon {
      font-size: 20px;
      line-height: 1;
    }

    .faq-answer {
      display: none;
      padding: 18px 26px 22px;
      background: var(--bg-answer);
      border-top: 1px solid var(--border);
      font-size: 13px;
      line-height: 1.7;
      color: var(--text-muted);
    }

    .faq-item.is-open .faq-answer {
      display: block;
    }

    .faq-item.is-open .faq-toggle-icon {
      content: "âˆ’";
    }

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

    @media (max-width: 900px) {
      .faq-section {
        padding: 50px 18px 70px;
      }

      .faq-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 18px;
      }

      .faq-title {
        white-space: normal;
        font-size: 32px;
        line-height: 1.25;
      }

      /* Hide support + CTA on mobile to match screenshot */
      .faq-header-right {
        display: none;
      }
    }

    @media (max-width: 600px) {
      .faq-title {
        font-size: 28px;
        letter-spacing: 0.18em;
      }

      .faq-question {
        padding-inline: 18px;
      }
      .faq-answer {
        padding-inline: 18px;
      }
    }
    
     /* ================= SECTION BACKGROUND ================= */

    .investment-section {
      /* min-height: 100vh; */
      background: #000000 url(https://www.royaloasis.co.ae/emaar-sales/images/Dubai-Hills-Estate-by-Emaar-e1677481015299.jpeg) center / cover no-repeat;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      padding: 60px 16px 40px;
    }

    .investment-inner {
      width: 100%;
      max-width: var(--max-width);
      display: flex;
      justify-content: center;
      background: #0000004f;
    }

    /* ================= CARD ================= */

    .investment-card {
      width: 100%;
      background: var(--card-bg);
      border-radius: 0;
      padding: 52px 70px 46px;
      box-shadow: 0 22px 80px rgba(0,0,0,0.55);
    }

    .investment-heading {
      text-align: center;
      margin-bottom: 20px;
    }

    .investment-heading h2 {
      font-size: 40px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-weight: 300;
    }

    .investment-heading h2 span {
      font-weight: 700; /* INVESTMENT GOALS bold */
    }

    .investment-subtitle {
      margin-top: 18px;
      font-size: 15px;
      line-height: 1.7;
      color: var(--text-muted);
      max-width: 780px;
      margin-inline: auto;
    }

    /* ================= FORM ================= */

    .investment-form {
      margin-top: 34px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .form-row {
      display: flex;
      gap: 20px;
    }

    .form-field {
      flex: 1;
      display: flex;
      flex-direction: column;
      font-size: 13px;
    }

    .form-label {
      margin-bottom: 8px;
      font-weight: 500;
    }

    .form-input,
    .form-select {
      width: 100%;
      border: 1px solid var(--border-field);
      background: #ffffff;
      padding: 12px 14px;
      font-size: 14px;
      font-family: inherit;
      outline: none;
    }

    .form-input::placeholder {
      color: #b3b3b3;
      font-style: italic;
    }

    .form-select {
      appearance: none;
      background-image: linear-gradient(45deg, transparent 50%, #666 50%),
                        linear-gradient(135deg, #666 50%, transparent 50%);
      background-position: calc(100% - 18px) 15px, calc(100% - 12px) 15px;
      background-size: 6px 6px, 6px 6px;
      background-repeat: no-repeat;
    }

    /* Phone input */

    .phone-wrapper {
      display: grid;
      grid-template-columns: 160px minmax(0, 1fr);
      border: 1px solid var(--border-field);
      background: #ffffff;
    }

    .phone-code {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 11px 12px;
      border-right: 1px solid var(--border-field);
      background: #f7f7f7;
      font-size: 14px;
    }

    .phone-flag {
      font-size: 18px;
    }

    .phone-code-text {
      font-weight: 500;
    }

    .phone-number {
      border: none;
      padding: 11px 12px;
      font-size: 14px;
      font-family: inherit;
      outline: none;
    }

    .phone-number::placeholder {
      color: #b3b3b3;
      font-style: italic;
    }

    /* Submit button */

    .form-submit-wrap {
      margin-top: 18px;
      display: flex;
      justify-content: center;
    }

    .form-submit-btn {
      width: 100%;
      max-width: 480px;
      padding: 18px 28px;
      border-radius: 24px;
      border: none;
      background-image: linear-gradient(to bottom, var(--btn-dark-top), var(--btn-dark-bottom));
      color: #ffffff;
      font-size: 13px;
      letter-spacing: 0.26em;
      text-transform: uppercase;
      cursor: pointer;
    }

    /* ================= FOOTER ================= */

    .investment-footer {
      width: 100%;
      background: #000000;
      color: #f5f5f5;
      padding: 26px 16px 70px;
      text-align: center;
      font-size: 11px;
      line-height: 1.7;
    }

    .investment-footer small {
      display: block;
      margin-bottom: 10px;
    }

    .investment-footer a {
      text-decoration: underline;
    }

    /* ================= RESPONSIVE (MOBILE VIEW) ================= */

    @media (max-width: 900px) {
      .investment-section {
        padding: 40px 16px 30px;
        align-items: stretch;
      }

      .investment-card {
        margin-inline: auto;
        max-width: 640px;
        padding: 36px 26px 32px;
      }

      .investment-heading h2 {
        font-size: 30px;
        line-height: 1.3;
      }

      .investment-subtitle {
        font-size: 14px;
        margin-top: 16px;
      }

      .form-row {
        flex-direction: column;  /* stack fields like screenshot 2 */
      }

      .phone-wrapper {
        grid-template-columns: 150px minmax(0,1fr);
      }
    }

    @media (max-width: 600px) {
      .investment-card {
        padding: 30px 20px 28px;
      }

      .investment-heading h2 {
        font-size: 26px;
        letter-spacing: 0.16em;
      }

      .investment-subtitle {
        font-size: 13px;
      }

      .form-submit-btn {
        letter-spacing: 0.22em;
      }
    }
    
    
    
    /* ========== MODAL ========== */

    .modal {
      position: fixed;
      inset: 0;
      display: none;
      z-index: 999;
      align-items: center;
      justify-content: center;
    }
    .modal.is-open {display: flex !important;}

    .modal-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.7);
    }

    .modal-content {
      position: relative;
      z-index: 1;
      background: #ffffff;
      color: #111;
      max-width: 640px;
      width: 100%;
      border-radius: 10px;
      padding: 28px 26px 24px;
      box-shadow: 0 24px 80px rgba(0,0,0,0.65);
      max-height: 90vh;
      overflow-y: auto;
    }

    .modal-close {
      position: absolute;
      right: 14px;
      top: 10px;
      border: none;
      background: transparent;
      font-size: 26px;
      cursor: pointer;
      line-height: 1;
    }

    .modal-info h3 {
      margin: 0 0 8px;
      font-size: 22px;
      line-height: 1.4;
    }

    .modal-developer {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
      font-size: 13px;
    }

    .modal-developer-name span:first-child { font-weight: 600; }
    .modal-developer-name span:last-child  { color: #777; font-size: 12px; }

    .modal-form-container p {
      font-size: 13px;
      color: #555;
      margin-bottom: 14px;
    }

    .form-group {
      margin-bottom: 12px;
      display: flex;
      flex-direction: column;
      font-size: 13px;
    }

    .form-group input,
    .form-group select {
      padding: 10px 12px;
      border-radius: 3px;
      border: 1px solid #d5d5d5;
      font-size: 14px;
      font-family: inherit;
      outline: none;
    }

    .form-group input:focus,
    .form-group select:focus {
      border-color: #111;
    }

    .q-label {
      margin-bottom: 6px;
      font-weight: 500;
    }

    .req { color: #d60000; }

    .btn-primary {
      display: block;
      width: 100%;
      margin-top: 10px;
      padding: 12px 20px;
      border-radius: 4px;
      border: none;
      background: #111;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      font-size: 12px;
      cursor: pointer;
    }

    .btn-primary:hover { background: #000; }

/* Make the intl-tel-input wrapper span full width */
.iti {
  width: 100%;
}

/* Match the screenshot: grey left block, white right block */
.iti--separate-dial-code .iti__flag-container {
  background-color: #f6f6f6;
  border: 1px solid #e3e3e3;
  border-right: none;
  border-radius: 3px 0 0 3px;
}

.iti--separate-dial-code .iti__selected-flag {
  padding: 0 10px;
}

.iti--separate-dial-code .iti__selected-dial-code {
  margin-left: 6px;
  font-weight: 600;
  color: #222;
}

/* Phone input area */
.iti__tel-input {
  border: 1px solid #e3e3e3;
  border-left: none;
  border-radius: 0 3px 3px 0;
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
  box-shadow: none;
}

.iti__tel-input:focus {
  outline: none;
  border-color: #111;
}

/* --------- "Select" default state ---------- */
/* When wrapper has .iti-empty, hide flag + dial-code and show "Select" text */

.iti-empty .iti__flag {
  opacity: 0;
}

.iti-empty .iti__selected-dial-code {
  visibility: hidden;
}

.iti-empty .iti__selected-flag::after {
  content: "Select";
  margin-left: 6px;
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

/* Make whole left block clickable */
.iti__flag-container { cursor: pointer; }

    @media (max-width: 600px) {
     
      .modal-content {
        max-width: 92vw;
        padding: 24px 18px 20px;
      }
    }
    
    
    
    /* Demo open button */
    .open-modal-btn {
      padding: 12px 24px;
      border-radius: 999px;
      border: 1px solid #fff;
      background: transparent;
      color: #fff;
      cursor: pointer;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

/* Container: dropdown + input as a single control */
.phone-wrapper {
  position: relative;
  display: flex;
  width: 100%;
}

/* Visible left block (flag + code) */
.country-select-display {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 9px 9px 9px;
  background: #f6f6f6;
  border: 1px solid #e3e3e3;
  border-radius: 3px 0 0 3px;
  width: 100px;              /* matches original look */
  box-sizing: border-box;
  font-size: 14px;
  cursor: pointer;
}

.country-flag {
  width: 20px;
  height: 14px;
  object-fit: cover;
}

.country-arrow {
  margin-left: auto;
  font-size: 10px;
  color: #555;
}

/* Hide the real <select> â€“ we use it only for value/validation */
#countryCodeSelect {
  display: none;
}

/* Phone input (right side) */
#phoneNumber {
  flex: 1;
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
  border: 1px solid #e3e3e3;
  border-left: none;
  border-radius: 0 3px 3px 0;
  box-sizing: border-box;
}

/* Height & alignment */
.country-select-display,
#phoneNumber {
  height: 40px; /* adjust to match your other inputs */
}

/* Focus style */
#phoneNumber:focus {
  outline: none;
  border-color: #111;
}

/* Optional focus indication on the left block when dropdown is open */
.country-dropdown.open + #phoneNumber,
.country-select-display:focus-within {
  border-color: #111;
}

/* === Custom dropdown with search === */

.country-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 4px;
  width: 260px;              /* adjust width as you like */
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 9999;
  display: none;             /* toggled with .open */
  box-sizing: border-box;
}

.country-dropdown.open {
  display: block;
}

.country-search {
  width: 100%;
  padding: 6px 8px;
  border: none;
  border-bottom: 1px solid #e3e3e3;
  box-sizing: border-box;
  font-size: 13px;
  outline: none;
}

.country-list {
  max-height: 260px;
  overflow-y: auto;
  list-style: none;
  margin: 0;
  padding: 0;
}

.country-option {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  font-size: 13px;
  cursor: pointer;
  box-sizing: border-box;
}

.country-option img.country-flag {
  width: 18px;
  height: 12px;
  object-fit: cover;
}

.country-option:hover {
  background-color: #f5f5f5;
}



/* Slider images inside project-media */
.project-media {
  position: relative;
  overflow: hidden;
}

.project-media .project-slide {
  display: none;
  width: 100%;
  height: auto;
}

.project-media .project-slide.active {
  display: block;
}


/* Default (desktop/tablet): left aligned */
  .binghatti-logo-wrap {
    text-align: left;
  }

  /* Mobile: center aligned */
  @media (max-width: 767px) {
    .binghatti-logo-wrap {
      text-align: center;
    }
    .binghatti-logo-wrap img {
      display: inline-block;   /* or block with margin: 0 auto */
    }
  }
  
  
  
  
  
    
     .sticky-cta-container {
        position: fixed;
        z-index: 1000;
        font-family: 'Satoshi', sans-serif;
    }
    

    /* --- MOBILE STYLES (Default View) --- */
    .cta-desktop {
        display: none;
    }

    .cta-mobile {
        display: flex;
        width: 100%;
        background: rgba(51, 51, 51, 0.16);
        padding: 5px;
    }
    
    .sticky-cta-container {
        bottom: 0;
        left: 0;
        right: 0;
    }

    .cta-mobile-button {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 12px 10px;
        color: white;
        text-decoration: none;
        font-weight: 600;
        /* font-size: 1.1rem; */
    }
    
    .cta-mobile-button.cta-call {background-color: #4285F4;border-radius: 12px;margin-right: 3px;}
    .cta-mobile-button.cta-whatsapp {background-color: #25D366;border-radius: 12px;margin-left: 3px;}
    
    /* Updated to style the Font Awesome <i> tag */
    .cta-mobile-button i {
        font-size: 1.1rem;
    }

    /* --- DESKTOP STYLES (Applies on screens 768px wide or larger) --- */
    @media (min-width: 768px) {
        .cta-mobile {
            display: none;
        }
        .cta-desktop {
            display: flex;
            flex-direction: column;
            gap: 8px;
            padding: 8px;
            background-color: #11111161;
            border-radius: 50px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        
        .sticky-cta-container {
            bottom: 25px;
            right: 25px;
            left: auto;
        }

        .cta-desktop-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 54px;
            height: 54px;
            border-radius: 50%;
            text-decoration: none;
            transition: transform 0.2s ease;
        }

        .cta-desktop-button:hover {
            transform: scale(1.1);
        }
        
        .cta-desktop-button.cta-call { background-color: #4285F4; }
        .cta-desktop-button.cta-whatsapp { background-color: #25D366; }
        
        /* Updated to style the Font Awesome <i> tag */
        .cta-desktop-button i {
            color: white;
            font-size: 1.8rem;
        }
    }
    
 .foot-btn {
text-decoration: none !important;border: 1px #fff solid;display: inline-flex;align-items: center;gap: 10px;padding: 14px 26px;/* border-radius: 999px; */border: 1px solid #838383;background: #000;font-size: 13px;letter-spacing: 0.14em;text-transform: uppercase;white-space: nowrap;border-radius: 6px;

}