 
    :root {
      --primary: #5d4037;
      --secondary: #8d6e63;
      --accent: #d4a762;
      --light: #f5f5f5;
      --dark: #2a2a2a;
      --danger: #d32f2f;
    }
    
    body {
      font-family: 'Montserrat', sans-serif;
      color: var(--dark);
      background-color: #fff;
    }
    
    h1, h2, h3, h4, h5 {
      font-family: 'Playfair Display', serif;
      font-weight: 600;
    }
    
    /* Premium Navigation */
    .navbar {
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
      padding: 15px 0;
      transition: all 0.3s ease;
    }
    
    .navbar-brand {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 1.8rem;
      color: var(--primary) !important;
    }
    
    .nav-link {
      font-weight: 500;
      color: var(--dark);
      margin: 0 10px;
      position: relative;
    }
    
    .nav-link:after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 0;
      background-color: var(--accent);
      transition: width 0.3s ease;
    }
    
    .nav-link:hover:after,
    .nav-link.active:after {
      width: 100%;
    }
    
    .btn-premium {
      background: var(--accent);
      color: white;
      border: none;
      border-radius: 30px;
      padding: 10px 25px;
      font-weight: 600;
      letter-spacing: 0.5px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(212, 167, 98, 0.3);
    }
    
    .btn-premium:hover {
      background: #c29555;
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(212, 167, 98, 0.4);
    }
    
    .btn-danger {
      background: var(--danger);
      color: white;
      border: none;
      border-radius: 30px;
      padding: 10px 25px;
      font-weight: 600;
      transition: all 0.3s ease;
    }
    
    /* Hero Section */
    .hero-section {
      background: linear-gradient(rgba(93, 64, 55, 0.7), rgba(93, 64, 55, 0.7)), 
                  url('../assets/images/hotel1.avif') center/cover no-repeat;
      color: white;
      padding: 180px 0 120px;
      position: relative;
    }
    
    .hero-title {
      font-size: 3.5rem;
      margin-bottom: 20px;
      text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }
    
    .hero-subtitle {
      font-size: 1.3rem;
      max-width: 700px;
      margin: 0 auto 30px;
    }
    
    /* Booking Form */
    .booking-form-container {
      margin-top: -80px;
      position: relative;
      z-index: 10;
    }
    
    .booking-form {
      background: white;
      border-radius: 16px;
      padding: 30px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
    
    .form-control {
      padding: 8px 8px;
      border-radius: 8px;
      border: 1px solid rgba(0,0,0,0.1);
    }
    
    .form-control:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 0.25rem rgba(212, 167, 98, 0.25);
    }
    
    /* Welcome Section */
    .welcome-section {
      padding: 100px 0;
    }
    
    .section-title {
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 20px;
      position: relative;
      display: inline-block;
    }
    
    .section-title:after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 60px;
      height: 3px;
      background: var(--accent);
    }
    
    .room-card {
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      margin-bottom: 30px;
    }
    
    .room-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }
    
    .room-img {
      height: 220px;
      object-fit: cover;
      width: 100%;
    }
    
    .room-body {
      padding: 20px;
    }
    
    .room-title {
      font-size: 1.4rem;
      color: var(--primary);
      margin-bottom: 10px;
    }
    
    /* Why Choose Us */
    .why-section {
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      color: white;
      padding: 100px 0;
    }
    
    .why-card {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-radius: 16px;
      padding: 30px;
      height: 100%;
      transition: all 0.3s ease;
      border: 1px solid rgba(255,255,255,0.1);
    }
    
    .why-card:hover {
      background: rgba(255, 255, 255, 0.15);
      transform: translateY(-5px);
    }
    
    .why-icon {
      font-size: 2.5rem;
      color: var(--accent);
      margin-bottom: 20px;
    }
    
    /* Footer */
    .footer {
      background: var(--primary);
      color: white;
      padding: 80px 0 30px;
    }
    
    .footer-title {
      font-size: 1.3rem;
      margin-bottom: 20px;
      color: var(--accent);
    }
    
    .footer-links a {
      color: white;
      text-decoration: none;
      display: block;
      margin-bottom: 10px;
      transition: color 0.3s ease;
    }
    
    .footer-links a:hover {
      color: var(--accent);
    }
    
    .social-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-right: 10px;
      transition: all 0.3s ease;
    }
      .social-icon i {
        color: white;       /* Set icon color to white */
        font-size: 20px;    /* Optional: adjust size */
        transition: color 0.3s; /* Smooth hover effect */
    }

    .social-icon i:hover {
        color: #ddd;        /* Optional: slightly change color on hover */
    }
    
    .social-icon:hover {
      background: var(--accent);
      color: var(--primary);
    }
    
    @media (max-width: 991px) {
      .hero-section {
        padding: 120px 0 80px;
      }
      
      .hero-title {
        font-size: 2.5rem;
      }
      
      .booking-form-container {
        margin-top: 0;
      }
    }
  