:root {
   --black: #050505;
   --charcoal: #111111;
   --dark-gray: #1c1c1c;
   --gray: #666666;
   --silver: #d9d9d9;
   --light-gray: #f5f5f5;
   --white: #ffffff;
 }
  * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
 }
  html {
   scroll-behavior: smooth;
 }
  body {
   font-family: "Poppins", sans-serif;
   background: var(--white);
   color: var(--charcoal);
 }
  .header {
   width: 100%;
   position: fixed;
   top: 0;
   z-index: 999;
   padding: 18px 8%;
   transition: 0.3s ease;
 }
  .header.scrolled {
   background: rgba(0, 0, 0, 0.92);
   backdrop-filter: blur(14px);
   box-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
 }
  .navbar {
   display: flex;
   justify-content: space-between;
   align-items: center;
 }
  .logo {
   color: var(--white);
   font-family: "Cormorant Garamond", serif;
   font-size: 34px;
   font-weight: 700;
   letter-spacing: 1px;
 }
  .logo span {
   color: var(--silver);
 }
  .nav-links {
   display: flex;
   list-style: none;
   gap: 24px;
 }
  .nav-links a {
   color: var(--white);
   text-decoration: none;
   font-size: 14px;
   font-weight: 500;
   letter-spacing: 0.5px;
   transition: 0.3s ease;
 }
  .nav-links a:hover {
   color: var(--silver);
 }
  .menu-btn {
   display: none;
   background: none;
   border: none;
   color: var(--white);
   font-size: 30px;
   cursor: pointer;
 }
  .hero {
   min-height: 100vh;
   background:
     linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.78)),
     url("https://images.unsplash.com/photo-1519167758481-83f550bb49b3")
     center/cover no-repeat;
   display: flex;
   align-items: center;
   padding: 0 8%;
 }
  .hero-content {
   max-width: 780px;
   color: var(--white);
   animation: fadeUp 1s ease;
 }
  .tagline {
   color: var(--silver);
   font-size: 14px;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 4px;
   margin-bottom: 18px;
 }
  .hero h1 {
   font-family: "Cormorant Garamond", serif;
   font-size: 78px;
   line-height: 1;
   margin-bottom: 24px;
   font-weight: 700;
 }
  .hero-text {
   font-size: 18px;
   line-height: 1.8;
   margin-bottom: 36px;
   color: #eeeeee;
   max-width: 650px;
 }
  .hero-buttons {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
 }
  .btn {
   padding: 15px 32px;
   border-radius: 50px;
   text-decoration: none;
   font-weight: 600;
   transition: 0.3s ease;
 }
  .primary-btn {
   background: var(--white);
   color: var(--black);
 }
  .primary-btn:hover {
   background: var(--silver);
   transform: translateY(-4px);
 }
  .secondary-btn {
   border: 2px solid var(--white);
   color: var(--white);
 }
  .secondary-btn:hover {
   background: var(--white);
   color: var(--black);
   transform: translateY(-4px);
 }
  .section {
   padding: 95px 8%;
 }
  .section-title {
   text-align: center;
   margin-bottom: 55px;
 }
  .section-title p {
   color: var(--gray);
   font-size: 14px;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 4px;
 }
  .section-title h2 {
   font-family: "Cormorant Garamond", serif;
   font-size: 48px;
   color: var(--black);
   margin-top: 10px;
 }
  .about-container,
 .booking-container {
   display: grid;
   grid-template-columns: 1.5fr 1fr;
   gap: 45px;
   align-items: center;
 }
  .about-text h3 {
   font-family: "Cormorant Garamond", serif;
   font-size: 40px;
   color: var(--black);
   margin-bottom: 20px;
 }
  .about-text p {
   line-height: 1.9;
   color: #555;
   font-size: 16px;
 }
  .stats {
   display: flex;
   gap: 25px;
   margin-top: 35px;
   flex-wrap: wrap;
 }
  .stats div {
   background: var(--white);
   padding: 28px;
   border-radius: 4px;
   border: 1px solid #eeeeee;
   box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
   min-width: 150px;
 }
  .stats h4 {
   color: var(--black);
   font-family: "Cormorant Garamond", serif;
   font-size: 38px;
 }
  .stats span {
   color: var(--gray);
   font-size: 14px;
 }
  .about-card {
   background: var(--black);
   color: var(--white);
   padding: 42px;
   border-radius: 4px;
   border: 1px solid #2c2c2c;
   box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
 }
  .about-card h3 {
   font-family: "Cormorant Garamond", serif;
   font-size: 34px;
   margin-bottom: 22px;
 }
  .about-card ul {
   list-style: none;
 }
  .about-card li {
   margin: 15px 0;
   font-size: 16px;
   color: #eeeeee;
 }
  .about-card li::before {
   content: "✓ ";
   color: var(--white);
   font-weight: bold;
 }
  .facilities,
 .map-section {
   background: var(--light-gray);
 }
  .facility-grid,
 .gallery-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 25px;
 }
  .facility-card {
   background: var(--white);
   padding: 38px 26px;
   text-align: center;
   border-radius: 4px;
   border: 1px solid #e8e8e8;
   box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
   transition: 0.3s ease;
 }
  .facility-card:hover {
   background: var(--black);
   color: var(--white);
   transform: translateY(-10px);
 }
  .facility-card:hover h3,
 .facility-card:hover p {
   color: var(--white);
 }
  .icon {
   font-size: 42px;
   margin-bottom: 18px;
 }
  .facility-card h3 {
   color: var(--black);
   margin-bottom: 12px;
   font-size: 21px;
 }
  .facility-card p {
   color: var(--gray);
   line-height: 1.7;
   font-size: 15px;
 }
  .gallery {
   background: var(--white);
 }
  .gallery-item {
   height: 290px;
   border-radius: 4px;
   color: var(--white);
   font-size: 24px;
   font-weight: 600;
   display: flex;
   align-items: end;
   padding: 25px;
   background-size: cover;
   background-position: center;
   position: relative;
   overflow: hidden;
   letter-spacing: 0.5px;
 }
  .gallery-item::before {
   content: "";
   position: absolute;
   inset: 0;
   background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
 }
  .gallery-item {
   z-index: 1;
 }
  .gallery-item::after {
   content: "";
   position: absolute;
   inset: 12px;
   border: 1px solid rgba(255, 255, 255, 0.35);
 }
  .item1 {
   background-image: url("https://images.unsplash.com/photo-1523438885200-e635ba2c371e");
 }
  .item2 {
   background-image: url("https://images.unsplash.com/photo-1464366400600-7168b8af9bc3");
 }
  .item3 {
   background-image: url("https://images.unsplash.com/photo-1511795409834-ef04bbd61622");
 }
  .item4 {
   background-image: url("https://images.unsplash.com/photo-1505236858219-8359eb29e329");
 }
  .map-container {
   overflow: hidden;
   border-radius: 4px;
   border: 1px solid #dedede;
   box-shadow: 0 22px 55px rgba(0, 0, 0, 0.16);
 }
  .map-container iframe {
   display: block;
   width: 100%;
   filter: grayscale(100%);
 }
  .direction-wrapper {
   text-align: center;
   margin-top: 28px;
 }
  .direction-btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 10px;


   min-width: 220px;
   padding: 16px 32px;


   background: #000;
   color: #fff !important;


   text-decoration: none;
   border-radius: 50px;


   font-size: 15px;
   font-weight: 600;


   border: 1px solid #000;
   transition: all .3s ease;
}


.direction-btn:hover {
   background: #fff;
   color: #000 !important;
   border: 1px solid #000;
   transform: translateY(-3px);
}
  .booking {
   background: var(--black);
   color: var(--white);
 }
  .booking-text p {
   color: var(--silver);
   text-transform: uppercase;
   font-weight: 600;
   letter-spacing: 4px;
 }
  .booking-text h2 {
   font-family: "Cormorant Garamond", serif;
   font-size: 50px;
   margin: 15px 0;
 }
  .booking-text span {
   color: #eeeeee;
   line-height: 1.8;
 }
  .booking-form {
   background: var(--white);
   padding: 38px;
   border-radius: 4px;
   display: grid;
   gap: 16px;
 }
  .booking-form input,
 .booking-form select,
 .booking-form textarea {
   width: 100%;
   padding: 15px;
   border: 1px solid #dddddd;
   border-radius: 0;
   font-size: 15px;
   outline: none;
   font-family: "Poppins", sans-serif;
 }
  .booking-form input:focus,
 .booking-form select:focus,
 .booking-form textarea:focus {
   border-color: var(--black);
 }
  .booking-form textarea {
   height: 110px;
   resize: none;
 }
  .booking-form button {
   padding: 15px;
   border: none;
   border-radius: 50px;
   background: var(--black);
   color: var(--white);
   font-weight: 600;
   cursor: pointer;
   transition: 0.3s ease;
 }
  .booking-form button:hover {
   background: var(--dark-gray);
 }
  .testimonials {
   background: var(--white);
 }
  .testimonial-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 25px;
 }
  .testimonial-card {
   background: var(--white);
   padding: 34px;
   border-radius: 4px;
   border: 1px solid #eeeeee;
   box-shadow: 0 18px 45px rgba(0, 0, 0, 0.07);
 }
  .testimonial-card p {
   color: #555;
   line-height: 1.8;
   margin-bottom: 20px;
   font-size: 15px;
 }
  .testimonial-card h4 {
   color: var(--black);
   font-size: 17px;
 }
  .contact {
   background: var(--light-gray);
 }
  .contact-box {
   max-width: 760px;
   margin: auto;
   background: var(--white);
   padding: 40px;
   border-radius: 4px;
   text-align: center;
   border: 1px solid #e8e8e8;
   box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
 }
  .contact-box p {
   margin: 16px 0;
   font-size: 16px;
   color: #333333;
 }
  .contact-box a {
   color: var(--black);
   text-decoration: none;
   font-weight: 500;
 }
  .contact-buttons {
   margin-top: 24px;
 }
  footer {
   background: var(--black);
   color: var(--white);
   text-align: center;
   padding: 24px;
   font-size: 14px;
 }
  .top-btn {
   position: fixed;
   bottom: 25px;
   right: 25px;
   background: var(--white);
   color: var(--black);
   border: 1px solid #cccccc;
   width: 45px;
   height: 45px;
   border-radius: 50%;
   font-size: 22px;
   cursor: pointer;
   display: none;
   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
 }
  .top-btn.show {
   display: block;
 }
  @keyframes fadeUp {
   from {
     opacity: 0;
     transform: translateY(35px);
   }
    to {
     opacity: 1;
     transform: translateY(0);
   }
 }
  @media (max-width: 992px) {
   .hero h1 {
     font-size: 56px;
   }
    .facility-grid,
   .gallery-grid {
     grid-template-columns: repeat(2, 1fr);
   }
    .testimonial-grid {
     grid-template-columns: 1fr;
   }
    .about-container,
   .booking-container {
     grid-template-columns: 1fr;
   }
 }
  @media (max-width: 768px) {
   .header {
     padding: 16px 6%;
   }
    .menu-btn {
     display: block;
   }
    .nav-links {
     position: absolute;
     top: 75px;
     right: 6%;
     width: 240px;
     background: rgba(0, 0, 0, 0.96);
     flex-direction: column;
     padding: 25px;
     border-radius: 4px;
     display: none;
     border: 1px solid #333333;
   }
    .nav-links.active {
     display: flex;
   }
    .hero {
     padding: 0 6%;
   }
    .hero h1 {
     font-size: 44px;
   }
    .hero-text {
     font-size: 16px;
   }
    .section {
     padding: 75px 6%;
   }
    .section-title h2 {
     font-size: 36px;
   }
    .facility-grid,
   .gallery-grid,
   .testimonial-grid {
     grid-template-columns: 1fr;
   }
    .stats {
     flex-direction: column;
   }
    .contact-buttons {
     display: grid;
     gap: 10px;
   }
 }


 .contact-buttons {
   margin-top: 25px;


   display: flex;
   justify-content: center;
   gap: 15px;
   flex-wrap: wrap;
}