.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 40px 0;
}

@media (max-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

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


.gallery img {
  width: 100%;
  border-radius: 12px;
  cursor: zoom-in;
  transition: .3s;
}
.gallery img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
}


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

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  animation: zoom .3s ease;
}

@keyframes zoom {
  from {transform: scale(.7); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.nav {
  position: absolute;
  top: 50%;
  font-size: 60px;
  color: white;
  cursor: pointer;
  user-select: none;
}

.prev { left: 30px; }
.next { right: 30px; }

.work-page {
  max-width: 1200px;
  margin: auto;
  padding: 100px 20px 60px;
}

.work-title {
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 10px;
}

.work-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  font-size: 1.05rem;
}
/* ===== Lightbox Description (Premium) ===== */

.desc {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 18px 40px;
  background: linear-gradient(to top, rgba(0,0,0,.85), rgba(0,0,0,0));
  color: #f2f2f2;
  font-size: 1.05rem;
  letter-spacing: .3px;
  text-align: center;

  opacity: 0;
  transform: translateY(18px);
  transition: all .45s ease;
}

.lightbox.show-desc .desc {
  opacity: 1;
  transform: translateY(0);
}
/* ===== Premium Letter Animation ===== */

.desc span {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px);
  animation: reveal .45s ease forwards;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===== Premium Booking UI ===== */


.form-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.form-popup {
  background: #fff;
  width: 420px;
  max-width: 90%;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 25px 80px rgba(0,0,0,.4);
  animation: pop .4s ease;
}

@keyframes pop {
  from { transform: scale(.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.form-popup h2 {
  margin-bottom: 5px;
  font-size: 1.6rem;
}

.form-subtitle {
  color: #777;
  margin-bottom: 25px;
}

.form-popup input,
.form-popup textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  margin-bottom: 15px;
  font-size: .95rem;
}

.form-popup textarea { resize: none; height: 80px; }

.submit-btn {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  background: #111;
  color: #fff;
  font-size: 1rem;
  border: none;
  cursor: pointer;
}

.submit-btn:hover { background: #000; }

.form-close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 24px;
  cursor: pointer;
}
/* ================= PREMIUM WORK PAGE THEME ================= */

body {
  background: linear-gradient(180deg, #0e0e0e, #151515);
  color: #eee;
  font-family: 'Outfit', sans-serif;
}

.work-page {
  max-width: 1200px;
  margin: auto;
  padding: 120px 20px 80px;
}

.work-title {
  font-size: 3rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: .5px;
}

.work-subtitle {
  text-align: center;
  color: #aaa;
  margin-bottom: 60px;
}

/* Gallery cards refinement */
.gallery img {
  border-radius: 16px;
  background: #111;
  box-shadow: 0 15px 40px rgba(0,0,0,.6);
  transition: transform .35s ease, box-shadow .35s ease;
}

.gallery img:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 25px 70px rgba(0,0,0,.8);
}

/* Lightbox refinement */
.lightbox {
  background: rgba(0,0,0,.96);
  backdrop-filter: blur(4px);
}
.work-header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 18px 40px;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(10px);
  z-index: 5000;
}

.work-logo {
  color: white;
  font-size: 1.4rem;
  text-decoration: none;
  font-weight: 600;
}

.work-logo span {
  color: #aaa;
}
/* ===== Aesthetic Premium CTA Button ===== */

.book-btn {
  display: block;
  margin: 50px auto 0;
  padding: 16px 48px;
  background: linear-gradient(135deg, #ff9f1c, #ffbf69);
  color: #111;
  border-radius: 60px;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .5px;
  border: none;
  cursor: pointer;

  box-shadow:
    0 12px 30px rgba(255,159,28,.45),
    inset 0 1px 0 rgba(255,255,255,.6);

  transition: all .35s ease;
}

.book-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 18px 45px rgba(255,159,28,.6),
    inset 0 1px 0 rgba(255,255,255,.8);
}

.book-btn:active {
  transform: translateY(0) scale(.98);
}

/* ===============================
   PREMIUM MOBILE WORK PAGES
   =============================== */

@media (max-width: 768px) {

  .work-page {
    padding: 90px 16px 40px;
  }

  .work-title {
    font-size: 1.9rem;
    letter-spacing: .5px;
  }

  .work-subtitle {
    font-size: .95rem;
    margin-bottom: 28px;
  }

  /* Gallery becomes elegant stacked cards */
  .gallery {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .gallery img {
    border-radius: 16px;
    aspect-ratio: 16 / 10;
    box-shadow: 0 15px 40px rgba(0,0,0,.25);
    transition: transform .35s ease, box-shadow .35s ease;
  }

  .gallery img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,.35);
  }

  /* Lightbox adjustments */
  .lightbox img {
    max-width: 96%;
    max-height: 75%;
  }

  .close {
    top: 15px;
    right: 18px;
    font-size: 34px;
  }

  .nav {
    font-size: 42px;
  }

  .prev { left: 12px; }
  .next { right: 12px; }

  /* Booking button premium mobile look */
  .book-btn {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  padding: 16px 0;
  font-size: 1.1rem;
  border-radius: 50px;

  background: linear-gradient(135deg, #ff9f1c, #ffbf69);
  box-shadow:
    0 12px 30px rgba(255,159,28,.55),
    inset 0 1px 0 rgba(255,255,255,.6);

  z-index: 3000;
}
/* ===== Premium Mobile Fullscreen Booking Sheet ===== */

  .form-overlay {
    align-items: flex-end;
  }
  .form-overlay {
    justify-content: center;
  }

  .form-popup {
    margin: 0;
  }

  .form-popup {
    width: 100%;
    height: 92vh;
    max-width: none;
    border-radius: 22px 22px 0 0;
    padding: 28px 22px 30px;

    overflow-y: auto;
    animation: sheetUp .45s ease;
  }

  @keyframes sheetUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
  }

  .form-popup h2 {
    font-size: 1.4rem;
  }

  .form-subtitle {
    font-size: .95rem;
    margin-bottom: 20px;
  }

  .form-popup input,
  .form-popup textarea {
    font-size: 1rem;
    padding: 14px 15px;
    border-radius: 12px;
  }

  .submit-btn {
    font-size: 1.05rem;
    padding: 16px;
    border-radius: 14px;
    margin-top: 10px;
  }

  .form-close {
    top: 14px;
    right: 18px;
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .form-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    animation: none !important;
  }
}

