  html {
    overflow-x: hidden !important;
  }

  :root {
    --gold: #d6b369;
    --dark: #383838;
    --light: #ffffff;
  }

  /* Font setup */
  body {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--dark);
    overflow-x: hidden !important;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    /* thin */
    color: var(--gold);
  }

  .fw-bold {
    font-weight: 700 !important;
  }

  .fw-semibold {
    font-weight: 600 !important;
  }

  .hero h2,
  .about-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    overflow-x: hidden;
  }


  /* About Section */
  .about-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 80px 1%;
  }

  .about-text {
    flex: 1;
  }

  .about-text h5 {
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 600;
  }

  .about-footer {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    background: var(--light);
    padding: 15px;
    margin-top: 25px;
    border-left: 4px solid var(--gold);
  }

  .about-image {
    flex: 1;
  }

  .image-wrapper {
    position: relative;
    display: inline-block;
  }

  .image-wrapper img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
  }

  .image-wrapper::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(var(--dark) 1px, transparent 1px);
    background-size: 10px 10px;
    z-index: 1;
  }

  .image-wrapper::after {
    content: "";
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    border-bottom: 8px solid var(--gold);
    border-right: 8px solid var(--gold);
    z-index: 1;
  }

  /* Gallery Section */
  .gallery-container {
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    padding: 40px 0;
  }

  .scroll-track {
    display: inline-flex;
    animation: scroll-left 40s linear infinite;
    overflow-x: hidden;
  }

  .scroll-track:hover {
    animation-play-state: paused;
  }

  .diagonal-card {
    flex: 0 0 auto;
    width: 300px;
    margin: 0 15px;
    transform: skew(-8deg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
  }

  .diagonal-card img {
    transform: skew(8deg) scale(1.2);
    transition: 0.4s ease;
    width: 100%;
    height: auto;
  }

  .diagonal-card:hover img {
    transform: skew(8deg) scale(1.35);
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }

  /* Parallax Sections */
  .parallax-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: var(--light);
  }

  .parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
  }

  .parallax-content {
    position: relative;
    z-index: 2;
    padding: 20px;
  }

  .parallax-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .parallax-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 20px auto 0;
    color: var(--light);
  }

  /* Golden Grid */
  .grid-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2px;
    margin: 40px;
    border: 1px solid var(--gold);
  }

  .grid-item {
    background: #b4b1b1;
    padding: 40px;
    text-align: center;
    transition: 0.3s;
    cursor: pointer;
  }

  .grid-item h3 {
    font-size: 1.3rem;
    color: var(--gold);
    margin: 0;
  }

  .grid-item p {
    font-size: 0.9rem;
    color: var(--light);
    margin-top: 10px;
    display: none;
  }

  .grid-item:hover {
    background: var(--dark);
  }

  .grid-item:hover p {
    display: block;
  }

  /* Floorplan */
  .floorplan-img {
    transition: transform 0.4s ease;
  }

  /* Floating CTA Button */
  .cta-btn-vertical {
    position: fixed;
    top: 40%;
    right: 32px;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right center;
    background: var(--dark);
    color: var(--light);
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 4px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease, transform 0.3s ease;
    animation: floatY 3s infinite ease-in-out;
  }

  .cta-btn-vertical:hover {
    background: var(--dark);
    transform: translateY(-50%) rotate(-90deg) scale(1.05);
  }

  @keyframes floatY {

    0%,
    100% {
      transform: translateY(-50%) rotate(-90deg) translateX(0);
    }

    50% {
      transform: translateY(-50%) rotate(-90deg) translateX(8px);
    }
  }

  /* Contact Form */
  .bg-gradient-form {
    background: linear-gradient(135deg, var(--dark), #2e2e2e, var(--dark));
  }

  /*.form-box {*/
  /*  background: rgba(255,255,255,0.1);*/
  /*  backdrop-filter: blur(6px);*/
  /*}*/
  .form-divider {
    width: 60px;
    border: 2px solid var(--gold);
    opacity: 1;
  }

  .form-control,
  .form-select {
    border-radius: 12px;
    padding: 5px 10px;
  }

  .form-control:focus,
  .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(214, 179, 105, 0.6);
  }

  .btn-warning {
    background: var(--gold);
    border: none;
    border-radius: 10px;
    transition: 0.3s ease;
  }

  .btn-warning:hover {
    background: var(--dark);
    color: var(--light);
    transform: translateY(-2px);
  }

  .amenities-section img {
    transition: transform 0.4s ease;
  }

  .amenities-section img:hover {
    transform: scale(1.05);
  }

  .highlight-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(214, 179, 105, 0.3);
    /* subtle gold border */
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  }

  .highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    border-color: var(--gold);
  }

  .icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    transition: all 0.3s ease;
  }

  .highlight-card:hover .icon-wrapper {
    background: var(--dark);
    transform: rotate(10deg) scale(1.1);
  }

  .nav-pills .nav-link.active {
    background-color: var(--gold);
    color: var(--dark);
  }

  .nav-pills {
    color: var(--dark);
  }

  .nav-pills .nav-link {
    color: var(--dark);
  }

  .highlights-section {
    background: #000000d4;
    /* dark bg */
    color: #fff;
  }

  .highlights-section h2 {
    color: #d6b369;
    /* gold accent */
    letter-spacing: 1px;
  }

  .highlights-wrapper {
    max-width: 1200px;
    margin: 0 auto;
  }

  .highlight-box {
    flex: 1 1 250px;
    background: var(--dark);
    border: 1px solid rgba(214, 179, 105, .25);
    padding: 2rem;
    text-align: center;
    border-radius: 16px;
    transition: all 0.3s ease;
    /* min-width: 260px;
  max-width: 300px; */
  }

  .highlight-box:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 10px 20px rgba(214, 179, 105, .25);
  }

  .highlight-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
  }

  .highlight-box h5 {
    font-weight: 600;
    margin-bottom: .5rem;
    color: #fff;
  }

  .highlight-box p {
    font-size: 14px;
    opacity: .85;
    margin: 0;
  }



  /* Overlay menu */
  #overlayMenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.4s ease-in-out;
    z-index: 2000;
  }

  #overlayMenu.active {
    transform: translateY(0);
  }

  #overlayMenu ul {
    list-style: none;
    padding: 0;
    text-align: center;
  }

  #overlayMenu ul li {
    margin: 15px 0;
  }

  #overlayMenu ul li a {
    color: var(--gold);
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: 600;
  }

  #overlayMenu #closeMenu {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: var(--gold);
  }

  .font-s {
    font-size: 15px;
  }

  .bg-dark {
    background-color: #fff;
  }

  /* Header */
  header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: var(--light);
    border-radius: 12px;
    padding: 0.1rem 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    z-index: 1000;
    color: var(--dark);
  }

  header.scrolled {
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    border-radius: 0;
    padding: 0.2rem 5rem;
  }

  #logo img {
    height: 80px;
    transition: height 0.3s ease;
  }

  header.scrolled #logo img {
    height: 80px;
  }

  /* Menu */
  #mainmenu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
  }

  #mainmenu a {
    color: var(--dark);
    font-weight: 300;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  #mainmenu a:hover {
    color: var(--gold);
  }

  /* CTA Button */
  .btn-main {
    background: var(--dark);
    color: var(--light) !important;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
  }

  .btn-main:hover {
    background: #a66d3f;
  }

  /* Hero Section */
  .hero {
    position: relative;
    height: 120vh;
    background-color: var(--dark);
    /* fallback */
    background-image: url('images/pranava_home.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    text-align: center;
  }

  .hero .hero-content {
    position: relative;
    z-index: 2;
  }

  .hero h1 {
    font-size: 3rem;
    font-weight: bold;
  }

  .hero p {
    font-size: 1.25rem;
  }

  /* Sticky Bottom Form */
  .sticky-form {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--dark);
    padding: 1rem 0rem;
    z-index: 9999;
    display: flex;
    justify-content: center;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3);
  }

  .sticky-form form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
  }

  .sticky-form input,
  .sticky-form select,
  .sticky-form button {
    padding: 0.6rem 1rem;
    border-radius: 6px;
    border: none;
    font-size: 1rem;
  }

  .sticky-form input,
  .sticky-form select {
    flex: 1;
    min-width: 150px;
  }

  .sticky-form button {
    background: var(--gold);
    color: var(--light);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    padding: 0px 60px;
  }


  /* Responsive */
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2rem;
    }

    .hero p {
      font-size: 1rem;
    }

    #mainmenu {
      flex-direction: column;
      gap: 1rem;
    }

    .sticky-form form {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

  /* About Section */
  .about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 8%;
    gap: 3rem;
    background: var(--light);
  }

  .about-text {
    flex: 1;
  }

  .about-text h5 {
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
  }

  .about-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0.5rem 0 1.5rem;
    color: var(--dark);
    position: relative;
    display: inline-block;
  }

  .about-text h2::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 50%;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
  }

  .about-text ul {
    list-style: none;
    padding: 0;
  }

  .about-text ul li {
    margin: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
  }

  .about-text ul li::before {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" fill="%23d6b369" viewBox="0 0 16 16"><path d="M13.485 1.929a1 1 0 0 1 1.415 1.415l-8.5 8.5a1 1 0 0 1-1.414 0l-4-4a1 1 0 0 1 1.414-1.415L5.5 9.5l7.985-7.571z"/></svg>');
    position: absolute;
    left: 0;
    top: 2px;
  }

  /* Image wrapper */
  .about-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .about-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 16px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  /* Gradient circle background */
  .about-image::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, #fdf6e3, #f5e6c8);
    z-index: 1;
    top: 20px;
    left: 20px;
  }

  /* Floating SVG badge */
  .badge {
    position: absolute;
    top: 10%;
    right: 8%;
    background: var(--gold);
    padding: 12px;
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }


  @media (max-width: 900px) {

    /* .highlight-box {
         margin-left: 30px;
} */
    .highlights-section .col-sm-6 {
      flex: 0 0 100%;
      max-width: 100%;
    }

    body {
      overflow-x: hidden !important;
    }

    .sticky-bottom-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      z-index: 1100;

    }

    .hero {
      background: url('images/pranava_home_mbil.jpg') no-repeat center center/cover !important;
    }

    .btn-fs {
      font-size: 16px;
    }

  }

  .number_element {
    font-size: 80px;
  }