/* 
  Professional Responsive CSS for Real Estate Project
  Clean, Organized, and Optimized
  Date: 2026
*/

/* ========== RESET & BASE STYLES ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background: linear-gradient(135deg, #f2f7fa, #e0eaf4);
  line-height: 1.6;
  min-height: 100vh;
}

/* ========== LINK STYLES ========== */
a {
  color: #0077cc;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover,
a:focus {
  color: #004a8f;
  outline: none;
  text-decoration: underline;
}

/* ========== BUTTON STYLES ========== */
button {
  cursor: pointer;
  border: none;
  border-radius: 6px;
  padding: 0.7em 1.4em;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  background-color: #ff9800;
  color: #fff;
  box-shadow: 0 4px 8px rgba(255, 152, 0, 0.3);
  user-select: none;
  display: inline-block;
  margin: 0.4em 0.5em;
}

button:hover,
button:focus {
  background-color: #e68a00;
  box-shadow: 0 6px 12px rgba(230, 138, 0, 0.5);
  outline: none;
  transform: translateY(-2px);
}

button:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(230, 138, 0, 0.7);
}

/* ========== HEADER SECTION ========== */
header {
  background-image: linear-gradient(135deg, #014a8f, #015fbc);
  color: #ffffff;
  padding: 2.5em 1.5em;
  text-align: center;
  box-shadow: 0 8px 16px rgba(1, 74, 143, 0.4);
  position: relative;
  overflow: hidden;
}

header h1 {
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 0.25em;
  animation: slideInFromLeft 1.2s forwards;
  opacity: 0;
  letter-spacing: 1.2px;
}

header p {
  font-size: 1.2rem;
  margin: 0.2em 0 1em;
  font-weight: 600;
  color: #d4e6fc;
}

header .price {
  background: rgba(255 255 255 / 0.15);
  display: inline-block;
  font-weight: 700;
  padding: 0.5em 1.2em;
  border-radius: 40px;
  font-size: 1.1rem;
  color: #ffdb4d;
  letter-spacing: 0.04em;
  margin-bottom: 0.5em;
  box-shadow:
    0 0 8px 2px #ffdb4daa,
    inset 0 0 6px 2px #ffdb4dcc;
  animation: glowPulse 3s ease-in-out infinite;
}

header p:last-of-type {
  font-size: 1rem;
  color: #c1d7f7;
  font-weight: 500;
}

/* ========== NAVIGATION BAR ========== */
nav {
  background-color: #004a8f;
  box-shadow: 0 3px 6px rgba(0, 74, 143, 0.6);
  position: sticky;
  top: 0;
  z-index: 99;
}

.nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0.8em 1em;
  gap: 0.7em;
}

.nav a {
  color: #f0f0f0;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.6em 1.2em;
  border-radius: 25px;
  font-size: 0.85rem;
  background-color: transparent;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: inset 0 0 0 2px #f0f0f0;
  user-select: none;
}
.nav a:hover,
.nav a:focus {
  background-color: #ffdb4d;
  color: #004a8f;
  outline: none;
  box-shadow: none;
}

/* ========== OVERVIEW SECTION ========== */
.overview {
  display: flex;
  max-width: 1200px;
  margin: 3em auto 4em;
  gap: 3em;
  padding: 0 1em;
  flex-wrap: wrap;
  align-items: center;
  background-color: #ffffffcc;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgb(0 0 0 / 0.1);
  animation: fadeInUp 1.2s ease forwards;
}

.text-content {
  flex: 1 1 480px;
  min-width: 280px;
}

.text-content h1 {
  font-size: 2.2rem;
  margin-bottom: 0.2em;
  color: #014a8f;
  font-weight: 700;
}

.text-content h2 {
  color: #0066cc;
  font-weight: 600;
  margin: 0 0 1em 0;
  font-style: italic;
}

.text-content p {
  font-size: 1rem;
  color: #444444dd;
  margin-bottom: 1em;
  line-height: 1.5;
}

/* Buttons container */
.buttons {
  margin-top: 1.5em;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8em;
}

.buttons button {
  background-color: #ff9800;
}

.buttons button:hover,
.buttons button:focus {
  background-color: #e68a00;
}

/* ========== IMAGE CONTENT ========== */
.image-content {
  position: relative;
  flex: 1 1 400px;
  min-width: 200px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 74, 143, 0.15);
  cursor: pointer;
  transition: transform 0.3s ease;
  background-color: #eff7ff;
}

.image-content:hover,
.image-content:focus-within {
  transform: scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 74, 143, 0.3);
}

/* Image */
.image-content img {
  width: 100%;
  height: auto;              /* allow natural height */
  display: block;
  object-fit: contain;       /* show full image */
  border-radius: 15px;
  background-color: #eff7ff; /* fills empty space if any */
}
/* Play Button on image */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffdb4dcc;
  color: #004a8f;
  font-weight: 900;
  padding: 0.9em 1.2em 0.85em 1.1em; /* visually center feel */
  border-radius: 50%;
  font-size: 1.8rem;
  box-shadow: 0 0 14px 3px #ffdb4dcc;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  user-select: none;
  cursor: pointer;
}
.play-button:hover,
.play-button:focus {
  background-color: #ffdb4d;
  box-shadow: 0 0 27px 7px #ffdb4dcc;
  outline: none;
  transform: translate(-50%, -50%) scale(1.2);
}

/* Caption below image */
.caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(1,74,143,0.9), transparent);
  color: #fff;
  padding: 0.7em 1em;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  user-select: none;
}

/* ========== GRID SECTION (WHY BUY) ========== */
.grid {
  max-width: 1100px;
  margin: 2em auto 3em;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5em;
  padding: 0 1em;
}

.box {
  background: #f9fafb;
  border-radius: 10px;
  padding: 1.25em;
  box-shadow: 0 3px 8px rgb(0 0 0 / 0.06);
  font-weight: 600;
  color: #1a1a1a;
  user-select: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.box:hover,
.box:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgb(0 0 0 / 0.15);
  outline: none;
  cursor: default;
}

/* Highlight box */
.highlight {
  background: #014a8f;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 5px 20px rgba(1, 74, 143, 0.5);
  border-radius: 15px;
  letter-spacing: 0.04em;
}

/* ========== TABLE STYLES (CONFIGURATION) ========== */
.container {
  max-width: 1000px;
  margin: 3em auto 5em;
  padding: 0 1em;
}

.container h1 {
  font-weight: 700;
  font-size: 2rem;
  color: #014a8f;
  margin-bottom: 1em;
  user-select: none;
}

/* Table responsive container */
table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
  border-radius: 12px;
  overflow: hidden; /* rounded corners */
  background: #ffffff;
  transition: box-shadow 0.3s ease;
}
table:hover {
  box-shadow: 0 6px 20px rgb(0 0 0 / 0.15);
}

/* THEAD */
thead {
  background: #0066cc;
  color: white;
}
thead th {
  padding: 1em 1.2em;
  text-align: left;
  font-weight: 700;
  letter-spacing: 0.05em;
  user-select: none;
  text-transform: uppercase;
}

/* TBODY */
tbody tr {
  border-bottom: 1px solid #e1e6f1;
  transition: background-color 0.3s ease;
}
tbody tr:hover,
tbody tr:focus-within {
  background-color: #f0f7ff;
  cursor: default;
}
tbody td {
  padding: 1em 1.2em;
  color: #2f2f2f;
  font-weight: 600;
  vertical-align: middle;
}
tbody td a {
  color: #0077cc;
  font-weight: 700;
  border-bottom: 1px dotted transparent;
  transition: border-color 0.2s ease;
}
tbody td a:hover,
tbody td a:focus {
  text-decoration: none;
  border-color: #0077cc;
  outline: none;
}

h1 {
  text-align: center;
}

/* ========== AMENITIES SECTION ========== */
.title {
  text-align: center;
  font-size: 2.2rem;
  margin: 3em 0 1em;
  font-weight: 800;
  color: #014a8f;
  user-select: none;
}

/* ========== TABS CONTAINER ========== */
.tabs {
  display: flex;
  justify-content: center;
  gap: 1em;
  margin: 1.5em 0 2em;
  flex-wrap: wrap;
  user-select: none;
}

.tab {
  background: linear-gradient(135deg, #f0f7ff, #e6f0fc);
  padding: 0.7em 1.5em;
  border-radius: 30px;
  font-weight: 600;
  color: #004a8f;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 3px 8px rgb(0 74 143 / 0.1);
  transition: all 0.3s ease;
  border: 2px solid #d0e3f5;
  display: inline-block;
}

.tab.active {
  background: linear-gradient(135deg, #0077cc, #0066b3);
  color: #fff;
  border-color: #005fa3;
  box-shadow: 0 6px 15px #0077ccaa;
  transform: translateY(-2px);
}

.tab.inactive {
  background: #f0f0f0;
  color: #999;
  cursor: not-allowed;
  box-shadow: none;
  border-color: #ddd;
}

.tab:hover:not(.inactive) {
  background: linear-gradient(135deg, #005fa3, #004a8f);
  color: #fff;
  box-shadow: 0 8px 20px #004a8faa;
  transform: translateY(-3px);
}

.tab:focus-visible:not(.inactive) {
  outline: 3px solid #ffdb4d;
  outline-offset: 3px;
}

/* Amenity Grid */
.amenities-grid {
  max-width: 1100px;
  margin: 0 auto 4em;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  padding: 0 1em;
}

.amenity {
  background: #f5f8fb;
  border-radius: 15px;
  padding: 1.4em 1em;
  text-align: center;
  box-shadow: 0 4px 14px rgb(0 0 0 / 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  user-select: none;
}
.amenity:hover,
.amenity:focus-within {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgb(0 0 0 / 0.15);
  outline: none;
}
.amenity img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  margin-bottom: 0.8em;
}
.amenity {
  padding: 1.2em;
}
.amenity p {
  font-size: 1rem;
  font-weight: 600;
  color: #014a8f;
  margin: 0;
}
.image-content {
  height: 420px;
}

.image-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 600px) {
  .image-content {
    height: auto;
  }
}

/* ========== SPECIFICATIONS SECTION ========== */
.specifications {
  max-width: 900px;
  background: #fff;
  margin: 4em auto 5em;
  padding: 2.5em 2em;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgb(0 74 143 / 0.08);
  user-select: none;
}

.specifications h1 {
  font-weight: 700;
  font-size: 2rem;
  color: #014a8f;
  margin-bottom: 1.2em;
  text-align: center;
}

.specifications .tabs {
  justify-content: center;
  margin-bottom: 1.8em;
}

.specifications .content {
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
  user-select: text;
}

.specifications ul {
  padding-left: 1.5em;
  margin-bottom: 1.2em;
}

.specifications ul li {
  margin-bottom: 0.7em;
  font-weight: 600;
  position: relative;
  padding-left: 1.2em;
  line-height: 1.32;
}

.specifications ul li::before {
  content: "✔";
  color: #0077cc;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.disclaimer {
  font-size: 0.87rem;
  color: #888;
  font-style: italic;
  user-select: text;
  border-top: 1px solid #eee;
  padding-top: 0.9em;
}

/* ========== FLOOR PLANS SECTION ========== */
.specifications h1 {
  font-weight: 700;
  font-size: 2rem;
  color: #014a8f;
  margin-bottom: 1.2em;
  text-align: center;
}

.floor-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2em;
  max-width: 1200px;
  margin: 2em auto;
  padding: 0 1em;
}

.floor-plan {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.floor-plan img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 6px 15px rgb(1 74 143 / 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.floor-plan img {
  object-fit: contain;
  background: #f5f8fb;
}
.floor-plan img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 25px rgb(1 74 143 / 0.2);
}

.floor-plan .caption {
  padding: 1em;
  font-weight: 600;
  color: #014a8f;
  font-size: 0.95rem;
  background: linear-gradient(135deg, #e6f0fc, #f0f7ff);
  border: 1px solid #d0e3f5;
  text-align: center;
  user-select: none;
  border-radius: 0 0 12px 12px;
}

/* Blur background when modal is open */
body.modal-open > *:not(.uh-modal-overlay) {
  filter: blur(6px);
  transition: filter 0.2s ease;
}



/* Note below floor plans */
.note {
  max-width: 900px;
  margin: 0 auto 3em;
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
  user-select: none;
  text-align: center;
}

/* Navigation Arrows */
.nav-arrows {
  display: flex;
  justify-content: space-between;
  max-width: 500px;
  margin: 0 auto 4em;
  user-select: none;
}
.arrow {
  color: #0077cc;
  font-weight: 700;
  cursor: pointer;
  padding: 0.5em 1em;
  border-radius: 30px;
  border: 2px solid #0077cc;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
}
.arrow:hover,
.arrow:focus {
  background-color: #0077cc;
  color: #fff;
  box-shadow: 0 4px 15px #0077ccaa;
  outline: none;
}

/* ========== LOCATION SECTION ========== */
.location-section {
  max-width: 1000px;
  margin: 5em auto 5em;
  padding: 0 1em 3em;
  background: #f4f9ff;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(1, 74, 143, 0.15);
  user-select: none;
}

.location-title {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 900;
  color: #014a8f;
  margin-bottom: 0.25em;
}

.location-description {
  max-width: 760px;
  margin: 0 auto 2em;
  font-size: 1rem;
  font-weight: 500;
  color: #42526e;
  line-height: 1.5;
  user-select: text;
  text-align: center;
}

/* Location tabs reuse .tabs & .tab styles */

/* Map Container */
.map-container {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(1, 74, 143, 0.3);
  background-color: #eaf2ff;
  position: relative;
}
.location-map {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: drop-shadow(0 6px 10px rgb(1 74 143 / 0.15));
  transition: transform 0.4s ease;
}
.map-container:hover .location-map {
  transform: scale(1.03);
}
.map-container {
  width: 100%;
  max-width: 1200px;
  margin: 2em auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
/* ========== GALLERY CONTAINER ========== */
.gallery-container {
  max-width: 1100px;
  margin: 4em auto 6em;
  padding: 0 1em;
  user-select: none;
}

.gallery-container h1 {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.2em;
  color: #014a8f;
}

/* ========== SLIDESHOW CONTAINER ========== */
.slideshow-container {
  position: relative;
  max-width: 100%;
  margin: 1.5em auto 2.5em;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgb(0 0 0 / 0.12);
  background: #fafeff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

/* ========== SLIDE STYLES (All variations) ========== */
.slide,
.slides,
.interior {
  display: none;
  text-align: center;
  animation: fadeIn 0.6s ease forwards;
  padding: 1em;
  user-select: none;
  width: 100%;
}

.slide.active-slide,
.slides.fade,
.interior.fade {
  display: block;
}

.slide img,
.slides img,
.interior img {
  max-width: 90%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 74, 143, 0.2);
  user-select: none;
  transition: transform 0.3s ease;
}

.slide img:hover,
.slides img:hover,
.interior img:hover {
  transform: scale(1.02);
}

/* ========== SLIDESHOW NAVIGATION ========== */
.navv {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.8em 1em;
  border-radius: 40px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  background-color: #0077cc;
  box-shadow: 0 4px 15px rgb(0 119, 204, 0.3);
  transition: background-color 0.3s ease, transform 0.2s ease;
  user-select: none;
  border: none;
  z-index: 10;
}

.navv:hover,
.navv:focus {
  background-color: #005fa3;
  box-shadow: 0 6px 20px #005fa3aa;
  transform: translateY(-50%) scale(1.1);
  outline: none;
}

.navv.prev {
  left: 15px;
}

.navv.next {
  right: 15px;
}

/* ========== UTILITY CLASSES ========== */
.hidden {
  display: none !important;
}

/* ========== INFO SECTION ========== */
.info {
  max-width: 1100px;
  margin: 5em auto 5em;
  padding: 0 1em;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2em;
  text-align: center;
  user-select: none;
}

.info div {
  background: #e6f0fc;
  padding: 2em 1.5em;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgb(1 74 143 / 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info div:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 45px rgb(1 74 143 / 0.3);
  cursor: default;
}
.info h3 {
  margin-top: 0;
  font-weight: 800;
  font-size: 1.3rem;
  color: #014a8f;
  margin-bottom: 0.4em;
}
.info p {
  margin: 0;
  color: #3c4a6b;
  font-weight: 600;
}

/* ========== FOOTER ========== */
footer {
  text-align: center;
  background-color: #014a8f;
  color: #d4e6fc;
  font-weight: 600;
  padding: 1.8em 1em;
  user-select: none;
  font-size: 0.9rem;
  box-shadow: inset 0 3px 5px rgba(255 255 255 / 0.15);
}
footer small {
  display: block;
  margin-top: 0.5em;
  font-weight: 400;
  color: #aac2e7cc;
}

/* ========== RESPONSIVE MEDIA QUERIES ========== */

/* Tablets (Medium screens) */
@media (max-width: 992px) {
  header h1 {
    font-size: 2rem;
  }

  .overview {
    flex-direction: column;
  }

  .text-content,
  .image-content {
    flex: 1 1 100%;
  }

  .grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.3em;
  }

  .floor-plans {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5em;
    padding: 0 1em;
  }

  .floor-plan {
    max-width: 100%;
  }

  .nav {
    justify-content: center;
    gap: 0.5em;
  }
}

/* Mobile devices (Small screens) */
@media (max-width: 600px) {
  html {
    font-size: 14px;
  }

  header h1 {
    font-size: 1.5rem;
  }
  header p {
    font-size: 0.95rem;
  }

  .price {
    font-size: 1rem;
  }

  nav .nav a {
    padding: 0.5em 0.9em;
    font-size: 0.75rem;
  }

  /* Buttons stacked vertically */
  .buttons {
    display: flex;
    flex-direction: column;
    gap: 0.7em;
    align-items: stretch;
  }
  .buttons button {
    width: 100%;
  }

  .amenities-grid {
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 1.4em;
  }

  .floor-plan {
    max-width: 100%;
    flex: none;
  }

  .floor-plans {
    grid-template-columns: 1fr;
    gap: 1.5em;
    padding: 0 0.8em;
  }

  .nav-arrows {
    max-width: 100%;
    padding: 0 1em;
  }

  .info {
    grid-template-columns: 1fr;
    gap: 1.5em;
    margin: 3em auto 3em;
  }

  /* Gallery responsive */
  .gallery-container {
    margin: 2em auto 3em;
  }

  .slideshow-container {
    min-height: 350px;
    margin: 1em auto 1.5em;
  }

  .slide img,
  .slides img,
  .interior img {
    max-width: 95%;
  }

  .navv {
    padding: 0.6em 0.8em;
    font-size: 1.5rem;
  }

  .navv.prev {
    left: 8px;
  }

  .navv.next {
    right: 8px;
  }
}

/* ========== KEYFRAME ANIMATIONS ========== */

/* Slide in from left */
@keyframes slideInFromLeft {
  from {
    transform: translateX(-40px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Glow pulse for price tag */
@keyframes glowPulse {
  0%, 100% {
    box-shadow:
      0 0 8px 2px #ffdb4daa,
      inset 0 0 6px 2px #ffdb4dcc;
  }
  50% {
    box-shadow:
      0 0 20px 5px #ffdb4dcc,
      inset 0 0 14px 4px #ffdb4dff;
  }
}

/* Fade in up for overview */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade in simple */
@keyframes fadeIn {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
/* ========== 360° VIRTUAL TOUR STYLING ========== */
/* --- Video Container --- */
#videoContainer {
  margin: 20px auto; 
  max-width: 350px; 
  background-color: #ffffff;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden; 
}

/* --- Video Element --- */
#videoFrame {
  width: 100%; 
  height: auto;
  display: block; 
  border-radius: 8px;
}


/* --- Button Styling --- */
.buttons {
  margin-bottom: 30px;
}