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

  body {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: #333;
      overflow-x: hidden;
  }

  /* Header & Navigation */
  header {
      position: fixed;
      top: 0;
      width: 100%;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      backdrop-filter: blur(10px);
      z-index: 1000;
      transition: all 0.3s ease;
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  }

  .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 5%;
      max-width: 1400px;
      margin: 0 auto;
  }

  .logo {
      font-size: 2rem;
      font-weight: bold;
      color: white;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.5rem;
  }

  .logo i {
      color: #f093fb;
  }

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

  .nav-links a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
      padding: 0.5rem 1rem;
      border-radius: 25px;
  }

  .nav-links a:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: translateY(-2px);
  }

  .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      background: none;
      border: none;
  }

  .hamburger span {
      width: 25px;
      height: 3px;
      background: white;
      margin: 3px 0;
      transition: 0.3s;
      border-radius: 2px;
  }

  /* Page Content */
  .page {
      display: none;
      min-height: 100vh;
      padding-top: 80px;
  }

  .page.active {
      display: block;
      animation: fadeIn 0.5s ease-in-out;
  }

  @keyframes fadeIn {
      from {
          opacity: 0;
          transform: translateY(20px);
      }

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

  /* Hero Section */
  .hero {
      height: 100vh;
      background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #4facfe 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      overflow: hidden;
  }

  .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"><animate attributeName="opacity" values="0.1;0.3;0.1" dur="3s" repeatCount="indefinite"/></circle><circle cx="80" cy="40" r="1.5" fill="white" opacity="0.1"><animate attributeName="opacity" values="0.1;0.4;0.1" dur="2s" repeatCount="indefinite"/></circle><circle cx="40" cy="70" r="2.5" fill="white" opacity="0.1"><animate attributeName="opacity" values="0.1;0.2;0.1" dur="4s" repeatCount="indefinite"/></circle></svg>');
  }

  .hero-content {
      z-index: 2;
      color: white;
      max-width: 800px;
      padding: 0 2rem;
  }

  .hero h1 {
      font-size: 4rem;
      margin-bottom: 1rem;
      animation: slideUp 1s ease-out;
      text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  }

  .hero p {
      font-size: 1.3rem;
      margin-bottom: 2rem;
      animation: slideUp 1s ease-out 0.3s both;
      opacity: 0.9;
  }

  .cta-button {
      background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
      color: white;
      padding: 1rem 2.5rem;
      border: none;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
      animation: slideUp 1s ease-out 0.6s both;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .cta-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  }

  @keyframes slideUp {
      from {
          opacity: 0;
          transform: translateY(50px);
      }

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

  /* Section Styling */
  .section {
      padding: 5rem 5%;
      max-width: 1400px;
      margin: 0 auto;
  }

  .section h2 {
      font-size: 3rem;
      text-align: center;
      margin-bottom: 3rem;
      background: linear-gradient(135deg, #667eea, #764ba2);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
  }

  /* About Page */
  .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      margin-bottom: 4rem;
  }

  .about-text {
      font-size: 1.1rem;
      line-height: 1.8;
  }

  .about-image {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  }

  .about-image::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
      z-index: 1;
  }

  .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      margin-top: 4rem;
  }

  .stat-card {
      background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
      padding: 2rem;
      border-radius: 20px;
      text-align: center;
      color: white;
      transition: transform 0.3s ease;
  }

  .stat-card:hover {
      transform: translateY(-10px);
  }

  .stat-number {
      font-size: 3rem;
      font-weight: bold;
      margin-bottom: 0.5rem;
  }

  /* Services Page */
  .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
  }

  .service-card {
      background: white;
      border-radius: 20px;
      padding: 2rem;
      box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
  }

  .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(45deg, #f093fb, #f5576c, #4facfe);
  }

  .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
  }

  .service-icon {
      font-size: 3rem;
      background: linear-gradient(135deg, #667eea, #764ba2);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 1rem;
  }

  .service-card h3 {
      color: #333;
      margin-bottom: 1rem;
      font-size: 1.5rem;
  }

  /* Rooms Page */
  .rooms-grid {
      display: grid;
      gap: 3rem;
      margin-top: 3rem;
  }

  .room-card {
      background: white;
      border-radius: 25px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
  }

  .room-card:hover {
      transform: translateY(-15px);
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  }

  .room-image {
      height: 300px;
      background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #4facfe 100%);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 4rem;
  }

  .room-content {
      padding: 2rem;
  }

  .room-price {
      font-size: 2rem;
      font-weight: bold;
      color: #f5576c;
      margin-bottom: 1rem;
  }

  .room-features {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin: 1rem 0;
  }

  .feature-tag {
      background: linear-gradient(135deg, #667eea, #764ba2);
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 25px;
      font-size: 0.9rem;
  }

  /* Contact Page */
  .contact-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      margin-top: 3rem;
  }

  .contact-form {
      background: white;
      padding: 2rem;
      border-radius: 20px;
      box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  }

  .form-group {
      margin-bottom: 1.5rem;
  }

  .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: bold;
      color: #333;
  }

  .form-group input,
  .form-group textarea {
      width: 100%;
      padding: 1rem;
      border: 2px solid #f0f0f0;
      border-radius: 10px;
      font-size: 1rem;
      transition: border-color 0.3s ease;
  }

  .form-group input:focus,
  .form-group textarea:focus {
      outline: none;
      border-color: #667eea;
  }

  .contact-info {
      display: flex;
      flex-direction: column;
      gap: 2rem;
  }

  .info-card {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      padding: 1.5rem;
      border-radius: 15px;
      display: flex;
      align-items: center;
      gap: 1rem;
      transition: transform 0.3s ease;
  }

  .info-card:hover {
      transform: translateX(10px);
  }

  .info-card i {
      font-size: 1.5rem;
  }

  /* Gallery Page */
  .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1rem;
      margin-top: 3rem;
  }

  .gallery-item {
      aspect-ratio: 1;
      background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #4facfe 100%);
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 2rem;
      transition: all 0.3s ease;
      cursor: pointer;
      position: relative;
      overflow: hidden;
  }

  .gallery-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.3);
      opacity: 0;
      transition: opacity 0.3s ease;
  }

  .gallery-item:hover::before {
      opacity: 1;
  }

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

  /* Footer */
  footer {
      background: linear-gradient(135deg, #2c3e50, #34495e);
      color: white;
      text-align: center;
      padding: 3rem 5%;
      margin-top: 5rem;
  }

  .footer-content {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-bottom: 2rem;
  }

  .footer-section h3 {
      margin-bottom: 1rem;
      color: #f093fb;
  }

  .social-icons {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 2rem;
  }

  .social-icons a {
      color: white;
      font-size: 1.5rem;
      padding: 0.5rem;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
  }

  .social-icons a:hover {
      background: #f093fb;
      transform: translateY(-3px);
  }

  /* Responsive Design */
  @media (max-width: 768px) {
      .hamburger {
          display: flex;
      }

      .nav-links {
          position: fixed;
          top: 0;
          right: -100%;
          height: 100vh;
          width: 100%;
          background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
          flex-direction: column;
          justify-content: center;
          align-items: center;
          transition: right 0.3s ease;
      }

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

      .nav-links a {
          font-size: 1.2rem;
          margin: 1rem 0;
      }

      .hamburger.active span:nth-child(1) {
          transform: rotate(-45deg) translate(-5px, 6px);
      }

      .hamburger.active span:nth-child(2) {
          opacity: 0;
      }

      .hamburger.active span:nth-child(3) {
          transform: rotate(45deg) translate(-5px, -6px);
      }

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

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

      .section {
          padding: 3rem 5%;
      }

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

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

      .navbar {
          padding: 1rem 5%;
      }

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

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

  @media (max-width: 480px) {
      .stats-grid {
          grid-template-columns: 1fr;
      }

      .room-features {
          flex-direction: column;
      }

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

  /* Animations */
  .animate-on-scroll {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s ease;
  }

  .animate-on-scroll.animated {
      opacity: 1;
      transform: translateY(0);
  }