    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background-color: #0a0a1a;
      color: #f5f5f5;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
    }

    .preloader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #0a0a1a;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      transition: opacity 0.5s ease;
    }

    .preloader-circle {
      width: 160px;
      height: 160px;
      border: 4px solid #d4af37;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      animation: spin 1.5s linear infinite;
      box-shadow: 0 0 20px #d4af37, 0 0 40px #d4af37, 0 0 60px #d4af37;
    }
    
    
    .preloader-text {
      font-size: 1rem;
      font-weight: 500;
      color: #d4af37;
      text-align: center;
      padding: 0 12px;
      text-shadow: 0 0 10px #d4af37;
    }


    header {
      position: sticky;
      top: 0;
      background-color: #0a0a1a;
      z-index: 50;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }

    .header-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-size: 2rem;
      color: #d4af37;
      text-decoration: none;
      font-weight: bold;
    }

    .burger {
      font-size: 1.5rem;
      color: #d4af37;
      background: none;
      border: none;
      cursor: pointer;
      display: none;
    }

    .nav-menu {
      display: flex;
      align-items: center;
    }

    .nav-menu ul {
      list-style: none;
      display: flex;
      gap: 30px;
    }

    .nav-link {
      color: #f5f5f5;
      text-decoration: none;
      font-size: 1rem;
      position: relative;
      transition: color 0.3s;
    }

    .nav-link:hover::after {
      width: 100%;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -4px;
      left: 0;
      background-color: #d4af37;
      transition: width 0.3s;
    }

    .close-menu {
      display: none;
      font-size: 1.5rem;
      color: #d4af37;
      background: none;
      border: none;
      cursor: pointer;
    }

    section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: bold;
      color: #f5f5f5;
      position: relative;
      margin-bottom: 30px;
    }

    .section-title::after {
      content: '';
      position: absolute;
      width: 200px;
      height: 3px;
      background-color: #d4af37;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
    }

    .section-text {
      font-size: 1.1rem;
      color: #b0b0b0;
      max-width: 1200px;
      margin: 0 auto 20px;
    }

    .btn-primary {
      background-color: #d4af37;
      color: #0a0a1a;
      padding: 12px 24px;
      border-radius: 4px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      display: inline-block;
    }

    .btn-primary:hover {
      background-color: #b8972e;
      transform: translateY(-2px);
    }

    .btn-primary i {
      margin-right: 8px;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 15px;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 8px;
    }

    .gallery-img {
      width: 100%;
      height: 350px;
      display: block;
      transition: transform 0.3s ease, filter 0.3s ease;
    }

    .gallery-img:hover {
      transform: scale(1.05);
      filter: brightness(1.1);
    }

    .book-now-btn {
      position: absolute;
      bottom: 15px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #d4af37;
      color: #0a0a1a;
      padding: 8px 16px;
      border-radius: 9999px;
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      opacity: 0;
      transition: opacity 0.3s, transform 0.3s;
    }

    .book-now-btn i {
      margin-right: 8px;
    }

    .gallery-item:hover .book-now-btn {
      opacity: 1;
      transform: translateX(-50%) translateY(-5px);
    }

    .locations-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 10px;
    }

    .location-link {
      background-color: #1a1a2e;
      color: #f5f5f5;
      padding: 10px;
      border-radius: 9999px;
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 600;
      text-align: center;
      transition: all 0.3s ease;
    }

    .location-link:hover {
      background-color: #d4af37;
      color: #0a0a1a;
    }

    .faq-item {
      max-width: 800px;
      margin: 0 auto 20px;
      text-align: left;
      background-color: #1a1a2e;
      padding: 15px;
      border-radius: 8px;
      transition: all 0.3s ease;
    }

    .faq-item:hover {
      background-color: #25253a;
      transform: translateY(-2px);
    }

    .faq-question {
      font-size: 1.2rem;
      font-weight: 600;
      color: #d4af37;
      margin-bottom: 10px;
    }

    .faq-answer {
      font-size: 1rem;
      color: #b0b0b0;
    }

    .sticky-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      z-index: 1000;
      box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
    }

    .sticky-buttons a {
      flex: 1;
      padding: 15px;
      text-align: center;
      font-weight: 600;
      color: #fff;
      text-decoration: none;
      font-size: 1rem;
      transition: background-color 0.3s, transform 0.2s;
    }

    .sticky-buttons a i {
      margin-right: 8px;
    }

    .call-btn {
      background-color: #d4af37;
    }

    .call-btn:hover {
      background-color: #b8972e;
      transform: translateY(-2px);
    }

    .whatsapp-btn {
      background-color: #25D366;
    }

    .whatsapp-btn:hover {
      background-color: #1da851;
      transform: translateY(-2px);
    }

    footer {
      background-color: #0a0a1a;
      padding: 40px 20px;
      text-align: center;
    }

    footer p {
      font-size: 1rem;
      color: #b0b0b0;
    }

    footer .text-gold {
      color: #d4af37;
    }

    footer i {
      margin-right: 8px;
    }

    .animate-slide-in {
      animation: slideIn 0.8s ease-out;
    }

    @keyframes slideIn {
      from { transform: translateY(20px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    @media (max-width: 768px) {
      .burger {
        display: block;
      }

      .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        height: 100%;
        width: 70%;
        background-color: #0a0a1a;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        padding: 20px;
      }

      .nav-menu.open {
        transform: translateX(0);
      }

      .nav-menu ul {
        flex-direction: column;
        gap: 20px;
        align-items: center;
      }

      .close-menu {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
      }

      .section-title {
        font-size: 2rem;
      }

      .section-text {
        font-size: 1rem;
      }

      .faq-question {
        font-size: 1.1rem;
      }

      .faq-answer {
        font-size: 0.9rem;
      }
    }

    @media (max-width: 480px) {
      .logo {
        font-size: 1.5rem;
      }

      .section-title {
        font-size: 1.8rem;
      }

      .section-text {
        font-size: 0.9rem;
      }

      .sticky-buttons a {
        font-size: 0.9rem;
        padding: 10px;
      }

      .faq-question {
        font-size: 1rem;
      }

      .faq-answer {
        font-size: 0.85rem;
      }
    }