.done-head {
  padding-top: 60px;
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.done-head-desc {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.done-head-desc-text {
  font-family: "Exo 2";
  padding-top: 30px;
  text-align: center;
  font-size: 2rem;
  line-height: 150%;
  max-width: 900px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.panorama-section {
  padding: 50px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.panorama-container-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
}

#panorama {
  width: 100%;
  height: 100%;
  z-index: 1;
}

.panorama-thumbs {
  display: flex;
  gap: 20px;
  margin-top: 25px;
  justify-content: center;
  flex-wrap: wrap;
  padding-bottom: 15px;
}

.pano-thumb {
  width: 200px;
  height: 130px;
  cursor: pointer;
  border: 3px solid transparent;
  transition: 0.3s;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pano-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.pano-thumb:hover {
  border-color: var(--main-color);
}

.pano-thumb:hover img {
  transform: scale(1.1);
}

.gallery {
  padding-bottom: 50px;
  position: relative;
}

.filters {
  width: 100%;
  padding: 20px 0;
}

.room-pills-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  padding: 0 15px;
  max-width: 1000px;
  margin: 0 auto;
}

.room-filter a {
  display: inline-block;
  padding: 10px 25px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Poiret One", sans-serif;
  font-size: 1.2rem;
  color: var(--main-color);
  border: 1px solid var(--main-color);
  transition: all 0.3s ease;
}

.room-filter a:hover,
.room-filter a.selected {
  background: var(--main-color);
  color: var(--white);
}

.hidden-checkbox {
  display: none;
}

.other-filters {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 25px;
  gap: 20px;
}

.color-filters-new {
  width: 100%;
  display: flex;
  justify-content: center;
}

.color-dots-container {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 15px;
  max-width: 800px;
}

.color-dot-label {
  cursor: pointer;
}

.dot {
  display: block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid #ddd;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.color-checkbox:checked + .dot {
  transform: scale(1.2);
  border-color: var(--black2);
  box-shadow: 0 0 0 3px var(--white), 0 0 0 5px var(--main-color);
}

.style-tags-container {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 15px;
}

.tag-text {
  display: block;
  padding: 6px 16px;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-family: "Exo 2", sans-serif;
  color: #666;
  font-size: 0.9rem;
  text-transform: lowercase;
  transition: 0.3s;
}

.style-checkbox:checked + .tag-text {
  background-color: var(--main-color);
  color: var(--white2);
  border-color: var(--main-color);
}

.gallery-div-bg {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 5%;
}

.gallery-div {
  padding: 10px;
  flex: 0 0 25%;
  max-width: 25%;
}

.gallery-img {
  height: 300px;
  background: #f0f0f0;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  opacity: 0;
  animation: fadeIn 0.5s forwards;
}

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

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.no-results-box {
  width: 100%;
  text-align: center;
  padding: 50px 20px;
  font-family: "Exo 2";
}

.no-results-box h3 {
  font-size: 1.5rem;
  color: var(--main-color);
  margin-bottom: 10px;
}

.btn-reset {
  margin-top: 20px;
  padding: 10px 30px;
  background: var(--main-color);
  color: var(--white2);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: "Poiret One";
  transition: 0.3s;
}

.btn-reset:hover {
  background: var(--black2);
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  position: relative;
  width: 90%;
  max-width: 1100px;
  height: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.close-lightbox {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #f1f1f1;
  font-size: 40px;
  cursor: pointer;
  z-index: 10001;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 16px;
  color: var(--white2);
  font-size: 30px;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

.next {
  right: 0;
}

.prev {
  left: 0;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.lightbox-bottom-panel {
  width: 100%;
  height: 20%;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.lightbox-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  width: 90%;
  max-width: 800px;
  padding: 10px 0;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.lightbox-thumbs::-webkit-scrollbar {
  display: none;
}

.lightbox-thumbs img {
  height: 70px;
  width: 100px;
  object-fit: cover;
  opacity: 0.4;
  cursor: pointer;
  border: 2px solid transparent;
  flex-shrink: 0;
  transition: 0.3s;
}

.lightbox-thumbs img.active {
  opacity: 1;
  border-color: var(--white);
  transform: scale(1.1);
}

.btn-similar {
  padding: 8px 25px;
  background: transparent;
  border: 1px solid var(--white2);
  color: var(--white2);
  cursor: pointer;
  font-family: "Exo 2";
  text-transform: uppercase;
  transition: 0.3s;
}

.btn-similar:hover {
  background: var(--white2);
  color: black;
}

.scroll-to-files-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--main-color);
  color: var(--white2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 99;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.scroll-to-files-btn:hover {
  transform: scale(1.1);
}

.downloads-section {
  padding: 80px 20px;
  background-color: var(--white2);
  text-align: center;
}

.files-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.file-card {
  width: 220px;
  height: 160px;
  background: #fff;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  border-radius: 8px;
}

.file-card i {
  font-size: 3.5rem;
  color: var(--main-color);
}

.file-card span {
  font-family: "Exo 2";
  font-weight: 600;
  padding: 0 10px;
}

.file-item input {
  display: none;
}

.file-item input:checked + .file-card {
  border-color: var(--green);
  background-color: #f0fff4;
  transform: translateY(-5px);
}

.file-item input:checked + .file-card i {
  color: var(--green);
}

.btn-download {
  padding: 15px 50px;
  background-color: var(--main-color);
  color: var(--white2);
  border: none;
  font-size: 1.2rem;
  font-family: "Poiret One";
  cursor: pointer;
  transition: 0.3s;
  margin-top: 20px;
}

.btn-download:hover {
  background-color: var(--black);
  letter-spacing: 2px;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: var(--white2);
  width: 90%;
  max-width: 450px;
  position: relative;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  animation: slideInModal 0.3s ease-out;
}

@keyframes slideInModal {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  background: var(--main-color);
  color: var(--white2);
  padding: 20px;
}

.modal-header h3 {
  margin: 0;
  font-family: "Poiret One";
  font-size: 1.5rem;
}

.modal-body {
  padding: 30px;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  color: var(--white2);
  cursor: pointer;
  opacity: 0.8;
}

.input-group input {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin: 15px 0;
  font-family: "Exo 2";
}

.policy-check {
  margin-bottom: 20px;
  font-size: 0.8rem;
}

.policy-check a {
  color: var(--main-color);
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--green);
  color: var(--white2);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  border-radius: 5px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .done-head {
    padding-top: 30px;
    min-height: auto;
  }

  .done-head-desc-text {
    font-size: 1rem;
    padding: 10px;
  }

  .panorama-container-wrapper {
    height: 400px;
  }

  .panorama-thumbs {
    gap: 10px;
    padding: 0 10px;
  }

  .pano-thumb {
    width: calc(50% - 10px);
    height: 100px;
  }

  .room-pills-container {
    justify-content: center;
    gap: 10px;
  }

  .room-filter a {
    font-size: 0.9rem;
    padding: 8px 15px;
    min-width: 100px;
    text-align: center;
  }

  .color-dots-container {
    gap: 12px;
  }

  .dot {
    width: 30px;
    height: 30px;
  }

  .gallery-div-bg {
    padding: 0 5px;
    justify-content: space-between;
  }

  .gallery-div {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 5px;
  }

  .gallery-img {
    height: 200px;
  }

  .prev,
  .next {
    padding: 10px;
    font-size: 20px;
  }

  .lightbox-thumbs img {
    height: 50px;
    width: 70px;
  }

  .files-grid {
    gap: 15px;
  }

  .file-card {
    width: 140px;
    height: 120px;
  }

  .file-card i {
    font-size: 2.5rem;
  }

  .file-card span {
    font-size: 0.8rem;
  }

  .scroll-to-files-btn {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}
.quick-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 20px 0;
  position: sticky;
  z-index: 90;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-btn {
  padding: 12px 25px;
  border: 2px solid var(--main-color);
  color: var(--main-color);
  text-decoration: none;
  font-family: "Poiret One";
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  background: var(--white);
  cursor: pointer;
  letter-spacing: 1px;
}

.nav-btn:hover {
  background: var(--main-color);
  color: var(--white);
  transform: translateY(-2px);
}

@media (min-width: 992px) {
  .quick-nav {
    padding: 30px 0;
    gap: 30px;
  }

  .nav-btn {
    padding: 18px 50px;
    font-size: 1.3rem;
    min-width: 250px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .quick-nav {
    flex-direction: column;
    padding: 15px;
    gap: 10px;
  }

  .nav-btn {
    width: 100%;
    text-align: center;
    padding: 15px;
    font-size: 1rem;
  }
}
.panorama-section {
  padding: 50px 0;
  max-width: 95%;
  margin: 0 auto;
}

@media (min-width: 1600px) {
  .panorama-section {
    max-width: 1500px;
  }
}

.panorama-container-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
@media (min-width: 1000px) {
  .panorama-container-wrapper {
    height: 700px;
  }
}
.filters-container-wrapper {
  padding: 30px 0;
  margin-bottom: 20px;
}

.pano-thumb {
  border-radius: 6px;
}

.gallery-img {
  border-radius: 6px;
}

.gallery-img img {
  border-radius: 6px;
}

.file-card {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 2px solid transparent;
}

.file-item:hover .file-card {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: #eee;
}

.file-item input:checked + .file-card {
  border-color: var(--green);
  background-color: #f0fff4;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 128, 0, 0.1);
}

.more-photos-hint {
  width: 100%;
  text-align: center;
  padding: 30px;
  color: #666;
  font-family: "Exo 2";
  font-size: 0.9rem;
  opacity: 0.8;
}

.more-photos-hint i {
  margin-right: 5px;
}
.pano-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.pano-overlay-btn {
  background: var(--main-color);
  color: var(--white);
  padding: 15px 30px;
  font-family: "Poiret One";
  font-weight: bold;
  border: 2px solid var(--white);
  text-transform: uppercase;
  pointer-events: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.pano-locked {
  pointer-events: none;
}
@media (min-width: 992px) {
  .pano-overlay {
    display: none !important;
  }

  .pano-locked {
    pointer-events: auto !important;
  }
}
.success-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.success-overlay.show {
  opacity: 1;
  visibility: visible;
}

.success-box {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  max-width: 450px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  position: relative;
}

.success-overlay.show .success-box {
  transform: translateY(0);
}

.success-icon {
  font-size: 50px;
  color: #4caf50;
  margin-bottom: 20px;
  display: inline-block;
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-box h3 {
  margin: 0 0 15px 0;
  font-size: 24px;
  color: #333;
  font-family: inherit;
}

.success-box p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

.btn-close-alert {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
}

.btn-close-alert:hover {
  background: #333;
}

@keyframes popIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
