   /* Reset & Base Styles */
   :root {
       --gold: #D9B596;
       --white: #FFFFFF;
       --black: #000000;
       --dark-gray: #222222;
       --light-gray: #F5F5F5;
       --transition: all 0.3s ease;
   }

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

   body {
       font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
       color: var(--dark-gray);
       background-color: var(--white);
       line-height: 1.6;
       overflow-x: hidden;
   }

   h1,
   h2,
   h3,
   h4 {
       font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
       font-weight: 600;
       color: var(--black);
   }

   a {
       text-decoration: none;
       color: inherit;
       transition: var(--transition);
   }

   img {
       max-width: 100%;
       height: auto;
       display: block;
   }

   .container {
       width: 100%;
       max-width: 1200px;
       margin: 0 auto;
       padding: 0 20px;
   }

   .btn {
       display: inline-block;
       padding: 12px 24px;
       background-color: var(--gold);
       color: var(--black);
       border: none;
       border-radius: 4px;
       font-weight: 500;
       cursor: pointer;
       transition: var(--transition);
       text-align: center;
   }

   .btn:hover {
       background-color: #C19C30;
       transform: translateY(-2px);
       box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
   }

   .btn-outline {
       background-color: transparent;
       border: 2px solid var(--gold);
       color: var(--gold);
   }

   .btn-outline:hover {
       background-color: var(--gold);
       color: var(--black);
   }

   section {
       padding: 80px 0;
   }

   .section-title {
       font-size: 2.5rem;
       margin-bottom: 20px;
       position: relative;
       display: inline-block;
   }

   .section-title::after {
       content: '';
       position: absolute;
       bottom: -10px;
       left: 0;
       width: 60px;
       height: 3px;
       background-color: var(--gold);
   }

   .section-subtitle {
       font-size: 1.1rem;
       color: #555;
       margin-bottom: 40px;
       max-width: 700px;
   }

   /* Header Styles */
   header {
       position: fixed;
       top: 0;
       left: 0;
       width: 100%;
       z-index: 1000;
       background-color: rgba(255, 255, 255, 0.95);
       box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
       transition: var(--transition);
   }

   header.scrolled {
       background-color: rgba(255, 255, 255, 0.98);
       box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
   }

   .header-container {
       display: flex;
       justify-content: space-between;
       align-items: center;
       padding: 20px 0;
   }

   .logo {
       font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
       font-size: 1.8rem;
       font-weight: 700;
       color: var(--gold);
       display: flex;
       align-items: center;
   }

   .logo i {
       margin-right: 10px;
       font-size: 2rem;
   }

   .nav-links {
       display: flex;
       list-style: none;
   }

   .nav-links li {
       margin-left: 30px;
   }

   .nav-links a {
       font-weight: 500;
       position: relative;
   }

   .nav-links a::after {
       content: '';
       position: absolute;
       bottom: -5px;
       left: 0;
       width: 0;
       height: 2px;
       background-color: var(--gold);
       transition: var(--transition);
   }

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

   .mobile-menu-btn {
       display: none;
       background: none;
       border: none;
       font-size: 1.5rem;
       color: var(--black);
       cursor: pointer;
   }

   /* Hero Section */
   .hero {
       height: 100vh;
       min-height: 600px;
       background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('gambar/furniture-998265.jpg') no-repeat center center/cover;
       color: var(--white);
       display: flex;
       align-items: center;
       text-align: center;
       position: relative;
       margin-top: 0;
   }
   /* Image by <a href="https://pixabay.com/users/newhouse-1160730/?utm_source=link-attribution&utm_medium=referral&utm_campaign=image&utm_content=998265">chien than</a> from <a href="https://pixabay.com//?utm_source=link-attribution&utm_medium=referral&utm_campaign=image&utm_content=998265">Pixabay</a> */

   .hero-content {
       max-width: 800px;
       margin: 0 auto;
       padding: 0 20px;
       animation: fadeInUp 1s ease;
   }

   .hero h1 {
       font-size: 3.5rem;
       margin-bottom: 20px;
       color: var(--white);

   }

   .hero p {
       font-size: 1.2rem;
       margin-bottom: 30px;

   }

   .hero-btns {
       display: flex;
       justify-content: center;
       gap: 20px;
   }

   .hero-btns .btn {
       min-width: 180px;
   }

   .scroll-down {
       position: absolute;
       bottom: 30px;
       left: 50%;
       transform: translateX(-50%);
       color: var(--white);
       font-size: 1.5rem;
       animation: bounce 2s infinite;
       cursor: pointer;
   }

   /* Properties Section */
   .properties {
       background-color: var(--light-gray);
   }

   .filters {
       display: flex;
       flex-wrap: wrap;
       gap: 15px;
       margin-bottom: 40px;
   }

   .filter-group {
       flex: 1;
       min-width: 200px;
   }

   .filter-group label {
       display: block;
       margin-bottom: 8px;
       font-weight: 500;
   }

   .filter-group select,
   .filter-group input {
       width: 100%;
       padding: 10px 15px;
       border: 1px solid #ddd;
       border-radius: 4px;
       font-family: 'Inter', sans-serif;
   }

   .search-bar {
       display: flex;
       margin-bottom: 40px;
   }

   .search-bar input {
       flex: 1;
       padding: 15px 20px;
       border: 1px solid #ddd;
       border-right: none;
       border-radius: 4px 0 0 4px;
       font-size: 1rem;
   }

   .search-bar button {
       padding: 0 25px;
       background-color: var(--gold);
       color: var(--black);
       border: none;
       border-radius: 0 4px 4px 0;
       cursor: pointer;
       font-weight: 500;
       transition: var(--transition);
   }

   .search-bar button:hover {
       background-color: #C19C30;
   }

   .properties-grid {
       display: grid;
       grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
       gap: 30px;
   }

   .property-card {
       background-color: var(--white);
       border-radius: 8px;
       overflow: hidden;
       box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
       transition: var(--transition);
       position: relative;
   }

   .property-card:hover {
       transform: translateY(-10px);
       box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
   }

   .property-img {
       height: 200px;
       overflow: hidden;
   }

   .property-img img {
       width: 100%;
       height: 100%;
       object-fit: cover;
       transition: var(--transition);
   }

   .property-card:hover .property-img img {
       transform: scale(1.05);
   }

   .property-badge {
       position: absolute;
       top: 15px;
       right: 15px;
       background-color: var(--gold);
       color: var(--black);
       padding: 5px 10px;
       border-radius: 4px;
       font-weight: 500;
       font-size: 0.8rem;
   }

   .property-content {
       padding: 20px;
   }

   .property-price {
       font-size: 1.5rem;
       font-weight: 600;
       color: var(--gold);
       margin-bottom: 10px;
   }

   .property-title {
       font-size: 1.2rem;
       margin-bottom: 10px;
       font-family: 'Playfair Display', serif;
   }

   .property-location {
       display: flex;
       align-items: center;
       margin-bottom: 15px;
       color: #666;
       font-size: 0.9rem;
   }

   .property-location i {
       margin-right: 5px;
       color: var(--gold);
   }

   .property-features {
       display: flex;
       flex-wrap: wrap;
       gap: 15px;
       margin-bottom: 20px;
       padding-bottom: 20px;
       border-bottom: 1px solid #eee;
   }

   .feature {
       display: flex;
       align-items: center;
       font-size: 0.9rem;
   }

   .feature i {
       margin-right: 5px;
       color: var(--gold);
   }

   .property-btn {
       width: 100%;
       text-align: center;
   }

   /* About Section */

   .about {
       max-width: 1200px;
       margin: 0 auto;
       padding: 0 px;
       display: grid;
       grid-template-columns: 1fr;
       gap: 50px;
       align-items: center;
   }

   .about-img {
       position: relative;
       border-radius: 8px;
       overflow: hidden;
       box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
   }

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

   .about-img::after {
       content: '';
       position: absolute;
       top: 20px;
       left: 20px;
       right: -20px;
       bottom: -20px;
       border: 2px solid var(--gold);
       border-radius: 8px;
       z-index: -1;
   }

   .about-content h2 {
       margin-bottom: 20px;
   }

   .about-content p {
       margin-bottom: 20px;
   }

   .stats {
       display: grid;
       grid-template-columns: repeat(3, 1fr);
       gap: 20px;
       margin-top: 30px;
   }

   .stat-item {
       text-align: center;
       padding: 20px;
       background-color: var(--light-gray);
       border-radius: 8px;
   }

   .stat-number {
       font-size: 2.5rem;
       font-weight: 700;
       color: var(--gold);
       margin-bottom: 5px;
       font-family: 'Playfair Display', serif;
   }

   .stat-label {
       font-size: 0.9rem;
       color: #666;
   }

   /* Contact Section */
   .contact {
       background-color: var(--light-gray);
   }

   .contact-container {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 50px;
   }

   .contact-info h3 {
       font-size: 1.5rem;
       margin-bottom: 20px;
   }

   .contact-details {
       margin-bottom: 30px;
   }

   .contact-item {
       display: flex;
       align-items: flex-start;
       margin-bottom: 15px;
   }

   .contact-item i {
       font-size: 1.2rem;
       color: var(--gold);
       margin-right: 15px;
       margin-top: 3px;
   }

   .contact-form .form-group {
       margin-bottom: 20px;
   }

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

   .contact-form input,
   .contact-form textarea,
   .contact-form select {
       width: 100%;
       padding: 12px 15px;
       border: 1px solid #ddd;
       border-radius: 4px;
       font-family: 'Inter', sans-serif;
       transition: var(--transition);
   }

   .contact-form input:focus,
   .contact-form textarea:focus,
   .contact-form select:focus {
       border-color: var(--gold);
       outline: none;
   }

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

   /* Footer */
   footer {
       background-color: var(--dark-gray);
       color: var(--white);
       padding: 60px 0 20px;
   }

   .footer-container {
       display: grid;
       grid-template-columns: repeat(4, 1fr);
       gap: 40px;
       margin-bottom: 40px;
   }

   .footer-col h3 {
       font-size: 1.2rem;
       margin-bottom: 20px;
       position: relative;
       padding-bottom: 10px;
       color: white;
       /* atau color: #ffffff; */
   }

   .footer-col h3::after {
       content: '';
       position: absolute;
       bottom: 0;
       left: 0;
       width: 40px;
       height: 2px;
       background-color: var(--gold);
   }

   .footer-col p {
       margin-bottom: 15px;
       color: #bbb;
   }

   .footer-links {
       list-style: none;
   }

   .footer-links li {
       margin-bottom: 10px;
   }

   .footer-links a {
       color: #bbb;
       transition: var(--transition);
   }

   .footer-links a:hover {
       color: var(--gold);
       padding-left: 5px;
   }

   .social-links {
       display: flex;
       gap: 15px;
       margin-top: 20px;
   }

   .social-links a {
       display: flex;
       align-items: center;
       justify-content: center;
       width: 40px;
       height: 40px;
       background-color: rgba(255, 255, 255, 0.1);
       border-radius: 50%;
       color: var(--white);
       transition: var(--transition);
   }

   .social-links a:hover {
       background-color: var(--gold);
       color: var(--black);
       transform: translateY(-3px);
   }

   .footer-bottom {
       text-align: center;
       padding-top: 20px;
       border-top: 1px solid rgba(255, 255, 255, 0.1);
       color: #bbb;
       font-size: 0.9rem;
   }

   /* WhatsApp Button */
   .whatsapp-btn {
       position: fixed;
       bottom: 30px;
       right: 30px;
       width: 60px;
       height: 60px;
       background-color: #25D366;
       color: var(--white);
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       font-size: 1.8rem;
       box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
       z-index: 999;
       transition: var(--transition);
   }

   .whatsapp-btn:hover {
       transform: scale(1.1);
       box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
   }

   /* Modal */
   .modal {
       position: fixed;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background-color: rgba(0, 0, 0, 0.8);
       display: flex;
       align-items: center;
       justify-content: center;
       z-index: 1001;
       opacity: 0;
       visibility: hidden;
       transition: var(--transition);
   }

   .modal.active {
       opacity: 1;
       visibility: visible;
   }

   .modal-content {
       background-color: var(--white);
       width: 90%;
       max-width: 900px;
       max-height: 90vh;
       border-radius: 8px;
       overflow-y: auto;
       position: relative;
       transform: translateY(50px);
       transition: var(--transition);
   }

   .modal.active .modal-content {
       transform: translateY(0);
   }

   .modal-close {
       position: absolute;
       top: 15px;
       right: 15px;
       width: 30px;
       height: 30px;
       background-color: var(--gold);
       color: var(--black);
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       font-size: 1rem;
       cursor: pointer;
       z-index: 1;
   }

   .modal-body {
       padding: 40px;
   }

   .modal-header {
       margin-bottom: 30px;
   }

   .modal-title {
       font-size: 1.8rem;
       margin-bottom: 10px;
   }

   .modal-price {
       font-size: 1.5rem;
       color: var(--gold);
       font-weight: 600;
       margin-bottom: 15px;
   }

   .modal-location {
       display: flex;
       align-items: center;
       margin-bottom: 20px;
       color: #666;
   }

   .modal-location i {
       margin-right: 8px;
       color: var(--gold);
   }

   .modal-gallery {
       display: grid;
       grid-template-columns: repeat(3, 1fr);
       gap: 15px;
       margin-bottom: 30px;
   }

   .modal-gallery img {
       width: 100%;
       height: 150px;
       object-fit: cover;
       border-radius: 4px;
       cursor: pointer;
       transition: var(--transition);
   }

   .modal-gallery img:hover {
       transform: scale(1.05);
   }

   .modal-features {
       display: grid;
       grid-template-columns: repeat(2, 1fr);
       gap: 20px;
       margin-bottom: 30px;
   }

   .modal-feature {
       display: flex;
       align-items: center;
   }

   .modal-feature i {
       margin-right: 10px;
       color: var(--gold);
       font-size: 1.2rem;
   }

   .modal-description {
       margin-bottom: 30px;
       line-height: 1.7;
   }

   .modal-btns {
       display: flex;
       gap: 15px;
   }

   /* Animations */
   @keyframes fadeInUp {
       from {
           opacity: 0;
           transform: translateY(30px);
       }

       to {
           opacity: 1;
           transform: translateY(0);
       }
   }

   @keyframes bounce {

       0%,
       20%,
       50%,
       80%,
       100% {
           transform: translateY(0) translateX(-50%);
       }

       40% {
           transform: translateY(-20px) translateX(-50%);
       }

       60% {
           transform: translateY(-10px) translateX(-50%);
       }
   }

   /* Responsive Styles */
   @media (max-width: 992px) {

       .about,
       .contact-container {
           grid-template-columns: 1fr;
       }

       .about-img {
           order: -1;
       }

       .footer-container {
           grid-template-columns: repeat(2, 1fr);
       }

       .modal-gallery {
           grid-template-columns: repeat(2, 1fr);
       }
   }

   @media (max-width: 768px) {
       .header-container {
           padding: 15px 10px;
       }

       .nav-links {
           position: fixed;
           top: 0;
           right: -100%;
           width: 80%;
           max-width: 300px;
           height: 100vh;
           background-color: var(--white);
           flex-direction: column;
           align-items: center;
           justify-content: center;
           transition: var(--transition);
           box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
           z-index: 999;
       }

       .nav-links.active {
           right: 0;
       }

       .nav-links li {
           margin: 15px 0;
       }

       .mobile-menu-btn {
           display: block;
           z-index: 1000;
       }

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

       .hero-btns {
           flex-direction: column;
           gap: 15px;
       }

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

       .stats {
           grid-template-columns: 1fr;
       }

       .modal-gallery {
           grid-template-columns: 1fr;
       }

       .modal-features {
           grid-template-columns: 1fr;
       }

       .modal-btns {
           flex-direction: column;
       }
   }

   @media (max-width: 576px) {
       .hero h1 {
           font-size: 2rem;
       }

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

       .footer-container {
           grid-template-columns: 1fr;
       }

       .modal-body {
           padding: 30px 20px;
       }
   }