* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background-color: #0a0a0a;
      font-family: 'Poppins', 'Montserrat', sans-serif;
      color: #f5f5f5;
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    /* custom gold accent */
    :root {
      --gold: #d4af37;
      --gold-light: #e4c568;
      --dark-bg: #050505;
      --card-bg: #111111;
      --border-dim: #222;
    }

    /* scrollbar */
    ::-webkit-scrollbar {
      width: 6px;
    }
    ::-webkit-scrollbar-track {
      background: #1a1a1a;
    }
    ::-webkit-scrollbar-thumb {
      background: var(--gold);
      border-radius: 10px;
    }

    /* sticky navbar premium */
    .navbar {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(5, 5, 5, 0.92);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(212, 175, 55, 0.2);
      transition: all 0.3s ease;
    }
    .nav-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0.9rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
    }
    .logo {
      font-size: 1.8rem;
      font-weight: 700;
      letter-spacing: -0.5px;
      background: linear-gradient(135deg, #fff 30%, var(--gold) 80%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      font-family: 'Montserrat', sans-serif;
    }
    .nav-links {
      display: flex;
      gap: 1.5rem;
      list-style: none;
      flex-wrap: wrap;
      align-items: center;
    }
    .nav-links li a {
      text-decoration: none;
      color: #e0e0e0;
      font-weight: 500;
      font-size: 0.95rem;
      transition: 0.3s;
      letter-spacing: 0.3px;
    }
    .nav-links li a:hover {
      color: var(--gold);
      transform: translateY(-2px);
    }
    .book-btn, .login-btn, .logout-btn {
      background: linear-gradient(95deg, var(--gold), #b58f2a);
      padding: 0.6rem 1.6rem;
      border-radius: 40px;
      color: #000 !important;
      font-weight: 700 !important;
      transition: 0.3s;
      box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
      cursor: pointer;
      border: none;
      font-size: 0.95rem;
    }
    .login-btn {
      background: transparent;
      border: 1px solid var(--gold);
      color: var(--gold) !important;
      box-shadow: none;
    }
    .logout-btn {
      background: #333;
      box-shadow: none;
    }
    .book-btn:hover, .login-btn:hover, .logout-btn:hover {
      transform: scale(1.02);
      box-shadow: 0 6px 16px rgba(212, 175, 55, 0.5);
    }
    .mobile-menu {
      display: none;
      font-size: 1.7rem;
      color: var(--gold);
      cursor: pointer;
    }

    /* Hero Slider */
    .hero {
      position: relative;
      height: 90vh;
      min-height: 600px;
      overflow: hidden;
    }
    .slider {
      width: 100%;
      height: 100%;
      position: relative;
    }
    .slides {
      display: flex;
      width: 300%;
      height: 100%;
      transition: transform 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    }
    .slide {
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center 30%;
      position: relative;
    }
    .slide::after {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 100%);
    }
    .hero-content {
      position: absolute;
      bottom: 20%;
      left: 8%;
      z-index: 5;
      max-width: 700px;
    }
    .hero-content h1 {
      font-size: 3.6rem;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1.2rem;
      text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    }
    .hero-content p {
      font-size: 1.2rem;
      letter-spacing: 1px;
      margin-bottom: 2rem;
      opacity: 0.9;
    }
    .cta-group {
      display: flex;
      gap: 1.2rem;
      flex-wrap: wrap;
    }
    .btn-primary, .btn-secondary {
      padding: 0.9rem 2.2rem;
      font-weight: 600;
      border-radius: 40px;
      text-decoration: none;
      transition: 0.25s;
      font-size: 1rem;
    }
    .btn-primary {
      background: var(--gold);
      color: #000;
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }
    .btn-primary:hover {
      background: #c9a63b;
      transform: translateY(-3px);
    }
    .btn-secondary {
      border: 1.5px solid var(--gold);
      color: white;
      background: transparent;
      backdrop-filter: blur(4px);
    }
    .btn-secondary:hover {
      background: rgba(212,175,55,0.2);
      transform: translateY(-3px);
    }
    .slider-nav {
      position: absolute;
      bottom: 30px;
      right: 30px;
      display: flex;
      gap: 12px;
      z-index: 8;
    }
    .slider-nav span {
      width: 44px;
      height: 44px;
      background: rgba(0,0,0,0.6);
      backdrop-filter: blur(4px);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: 0.2s;
      color: var(--gold);
      font-size: 1.3rem;
    }
    .slider-nav span:hover {
      background: var(--gold);
      color: black;
    }

    /* sections */
    section {
      padding: 5rem 2rem;
      max-width: 1400px;
      margin: 0 auto;
    }
    .section-title {
      font-size: 2.5rem;
      font-weight: 600;
      margin-bottom: 2.5rem;
      position: relative;
      display: inline-block;
    }
    .section-title:after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 0;
      width: 70px;
      height: 3px;
      background: var(--gold);
    }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 1.8rem;
    }
    .gallery-item {
      overflow: hidden;
      border-radius: 12px;
      cursor: pointer;
      position: relative;
      background: #1a1a1a;
      transition: all 0.4s ease;
    }
    .gallery-item img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      display: block;
    }
    .gallery-item:hover img {
      transform: scale(1.07);
    }
    .category-tag {
      position: absolute;
      bottom: 15px;
      left: 15px;
      background: rgba(0,0,0,0.7);
      backdrop-filter: blur(4px);
      padding: 0.3rem 1rem;
      border-radius: 40px;
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.5px;
      border-left: 2px solid var(--gold);
      pointer-events: none;
    }
    .delete-img-btn {
      position: absolute;
      top: 15px;
      right: 15px;
      background: rgba(0,0,0,0.8);
      color: #ff4444;
      border: none;
      border-radius: 50%;
      width: 32px;
      height: 32px;
      cursor: pointer;
      z-index: 10;
      display: none;
      align-items: center;
      justify-content: center;
      transition: 0.2s;
    }
    .delete-img-btn:hover {
      background: #ff4444;
      color: white;
    }
    .gallery-item:hover .delete-img-btn {
      display: flex;
    }
    /* filter buttons */
    .filter-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
      margin-bottom: 2.5rem;
      justify-content: center;
    }
    .filter-btn {
      background: transparent;
      border: 1px solid #333;
      color: #ddd;
      padding: 0.5rem 1.5rem;
      border-radius: 40px;
      font-weight: 500;
      transition: 0.2s;
      cursor: pointer;
    }
    .filter-btn.active, .filter-btn:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: #000;
    }
    /* about */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }
    .about-text p {
      line-height: 1.7;
      margin-top: 1rem;
      color: #ccc;
    }
    .about-img img {
      width: 100%;
      border-radius: 20px;
      filter: grayscale(0.2);
      transition: 0.4s;
      box-shadow: 0 20px 35px -12px rgba(0,0,0,0.6);
    }
    /* testimonials */
    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }
    .testimonial-card {
      background: #111;
      padding: 2rem;
      border-radius: 24px;
      border: 1px solid #222;
      transition: 0.3s;
    }
    .testimonial-card i {
      color: var(--gold);
      font-size: 2rem;
      margin-bottom: 1rem;
    }
    .testimonial-card p {
      font-style: italic;
      line-height: 1.5;
    }
    .client-name {
      margin-top: 1rem;
      font-weight: 600;
      color: var(--gold);
    }
    /* contact form */
    .contact-form {
      max-width: 700px;
      margin: 0 auto;
      background: #0e0e0e;
      padding: 2rem;
      border-radius: 28px;
      border: 1px solid #222;
    }
    .form-group {
      margin-bottom: 1.5rem;
    }
    input, textarea {
      width: 100%;
      padding: 1rem;
      background: #1c1c1c;
      border: 1px solid #2c2c2c;
      border-radius: 16px;
      color: white;
      font-family: inherit;
      transition: 0.2s;
    }
    input:focus, textarea:focus {
      outline: none;
      border-color: var(--gold);
    }
    .submit-btn {
      background: var(--gold);
      color: black;
      font-weight: 700;
      padding: 0.9rem;
      border: none;
      border-radius: 40px;
      width: 100%;
      font-size: 1rem;
      cursor: pointer;
    }
    /* Modal Styles */
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.95);
      z-index: 2000;
      justify-content: center;
      align-items: center;
    }
    .modal-content {
      background: #111;
      padding: 2rem;
      border-radius: 28px;
      max-width: 450px;
      width: 90%;
      border: 1px solid var(--gold);
    }
    .modal-content h3 {
      margin-bottom: 1.5rem;
      color: var(--gold);
    }
    .modal-content input {
      margin-bottom: 1rem;
    }
    .modal-buttons {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }
    .modal-buttons button {
      flex: 1;
      padding: 0.8rem;
      border-radius: 40px;
      cursor: pointer;
    }
    .admin-panel {
      background: #0e0e0e;
      border-radius: 28px;
      padding: 2rem;
      margin-top: 2rem;
      border: 1px solid var(--gold);
    }
    .admin-panel h3 {
      color: var(--gold);
      margin-bottom: 1rem;
    }
    .add-image-form {
      display: grid;
      gap: 1rem;
      margin-bottom: 2rem;
    }
    .add-image-form select, .add-image-form input {
      padding: 0.8rem;
      border-radius: 16px;
      background: #1c1c1c;
      border: 1px solid #333;
      color: white;
    }
    /* footer */
    footer {
      background: #030303;
      padding: 2.5rem 2rem;
      text-align: center;
      border-top: 1px solid rgba(212,175,55,0.2);
    }
    .social-links a {
      color: #ccc;
      font-size: 1.6rem;
      margin: 0 1rem;
      transition: 0.2s;
      display: inline-block;
    }
    .social-links a:hover {
      color: var(--gold);
      transform: translateY(-3px);
    }
    /* responsive */
    @media (max-width: 992px) {
      .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1rem 0;
      }
      .nav-links.show {
        display: flex;
      }
      .mobile-menu {
        display: block;
      }
      .hero-content h1 {
        font-size: 2.5rem;
      }
      .about-grid {
        grid-template-columns: 1fr;
      }
    }
    @media (max-width: 640px) {
      .hero-content {
        left: 5%;
        bottom: 15%;
      }
      .btn-primary, .btn-secondary {
        padding: 0.7rem 1.5rem;
      }
      section {
        padding: 3rem 1.2rem;
      }
    }
    .whatsapp-float {
      position: fixed;
      bottom: 25px;
      right: 25px;
      background: #25D366;
      width: 55px;
      height: 55px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: white;
      box-shadow: 0 6px 16px rgba(0,0,0,0.3);
      z-index: 99;
      transition: 0.2s;
    }
    .whatsapp-float:hover {
      transform: scale(1.05);
      background: #20b859;
    }
    
    
    