```css
* {
  box-sizing: border-box;
}

.hero-section {
  background: url('images/bwp-collage.jpg') no-repeat center center/cover;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-bottom: 20px;
}

.hero-overlay {
  padding: 40px 60px;
  border-radius: 12px;
  max-width: 90%;
  background: rgba(0, 0, 0, 0.3);
}

.hero-overlay h1 {
  font-size: 64px;
  font-weight: 800;
  color: #ffe600;
  letter-spacing: 2px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7), -2px -2px 4px rgba(255, 255, 255, 0.2);
  font-family: 'Georgia', serif;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hero-overlay p {
  font-size: 20px;
  font-weight: 300;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #f5f7fa, #c3e0ff);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background: #fefefe;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

header p {
  font-size: 18px;
  color: #555;
  margin: 10px auto;
  max-width: 800px;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.row-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 20px;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

.row-wrapper.hidden {
  display: none;
}

.explore-more-container {
  text-align: center;
  padding: 20px;
  margin: 0 auto;
}

.explore-more {
  display: inline-block;
  padding: 14px 28px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #8b008b, #ff69b4);
  border: none;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.explore-more:hover {
  background: linear-gradient(135deg, #ff69b4, #8b008b);
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.explore-more:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.box-wrapper {
  flex: 1 1 100%;
  min-width: 280px;
  max-width: 360px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-height: 300px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(200, 230, 255, 0.7));
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.box-heading {
  font-size: 22px;
  font-weight: bold;
  color: #222;
  font-family: 'Georgia', serif;
  text-align: center;
  margin: 0;
}

.update-text {
  font-size: 9px;
  color: #333;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
  margin: 5px 0 0 0;
}

.text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.box-details {
  font-size: 14px;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
  padding: 5px 15px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 4px;
  width: fit-content;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.box-details .full-text {
  display: none;
}

.box-details.expanded .full-text {
  display: inline;
}

.box-details .short-text {
  display: inline;
}

.box-details.expanded .short-text {
  display: none;
}

.see-more {
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  font-size: 0.7em;
  padding: 0;
  margin-left: 4px;
  text-decoration: underline;
}

.content-box {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: zoom-in;
  opacity: 1;
  transform: none;
}

.content-box.pop-out {
  animation: popOut 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.content-box:hover {
  transform: scale(1.07);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.content-box.zoomed {
  background-size: 200%;
  cursor: zoom-out;
}

@keyframes popOut {
  0% {
    transform: scale(0.9) rotate(-3deg);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.1) rotate(3deg);
    opacity: 0.9;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

footer {
  background: linear-gradient(135deg, #e0f2ff, #f5f7fa);
  text-align: center;
  padding: 20px;
}

.back-button {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  margin: 5px;
  transition: background 0.3s ease, transform 0.2s ease;
  background: linear-gradient(135deg, #00c9ff, #92fe9d);
  color: #000;
}

.back-button:hover {
  background: linear-gradient(135deg, #00bfff, #7fff00);
  transform: scale(1.05);
}

.mail-button, .phone-button {
  font-size: 28px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
  background: transparent;
}

.mail-button, .mail-button * {
  color: #ff7b00;
  text-shadow: none !important;
  border: none !important;
  outline: none !important;
}

.phone-button {
  color: #128C7E;
  order: 0; /* Changed to place WhatsApp button first (higher) */
}

.phone-button .fa-whatsapp {
  color: #128C7E;
  font-size: 28px;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

.mail-button {
  order: 1; /* Changed to place Email button second (lower) */
}

.mail-button:hover, .phone-button:hover {
  transform: scale(1.1);
}

.mail-button:focus, .phone-button:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.contact-wrapper {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
  background: transparent;
}

.dropdown-content {
  display: none;
  position: absolute;
  bottom: 60px;
  left: 0;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  overflow: hidden;
  font-family: 'Segoe UI', sans-serif;
  z-index: 999;
}

#phoneDropdown {
  bottom: calc(100% + 10px); /* Adjusted to align with WhatsApp button (now first) */
}

#emailDropdown {
  bottom: calc(100% + 50px); /* Adjusted to align with Email button (now second) */
}

.info-display {
  padding: 12px 16px;
  font-size: 16px;
  color: #333;
  background: #fff;
  border-radius: 4px;
  font-weight: bold;
  text-align: center;
}

.thumb-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
  max-width: 100%;
  padding-bottom: 6px;
  scroll-behavior: smooth;
}

.thumb {
  width: 1.5cm;
  height: 1.5cm;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.thumb-video-wrapper {
  position: relative;
  width: 1.5cm;
  height: 1.5cm;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  overflow: hidden;
}

.thumb-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.thumb-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: none;
}

video:not([poster]) + .thumb-fallback {
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.8em;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.play-button:hover {
  opacity: 1;
}

.thumb:hover, .thumb-video-wrapper:hover {
  transform: scale(1.1);
}

.magnifier-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  cursor: zoom-out;
  display: none;
}

.video-popout-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  cursor: pointer;
}

#popout-video {
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.video-fallback {
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  border-radius: 10px;
  display: none;
}

#popout-video:not([poster]) + .video-fallback {
  display: block;
}

@media (max-width: 1200px) {
  .box-wrapper {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 260px;
    max-width: 340px;
  }

  .content-box {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .explore-more {
    padding: 12px 24px;
    font-size: 16px;
  }

  .thumb, .thumb-video-wrapper {
    width: 1.4cm;
    height: 1.4cm;
  }

  .play-button {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: auto;
    padding: 40px 20px;
  }

  .hero-overlay h1 {
    font-size: 36px;
  }

  .hero-overlay p {
    font-size: 16px;
  }

  header p {
    font-size: 16px;
    padding: 0 10px;
  }

  .row-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
  }

  .box-wrapper {
    flex: 1 1 100%;
    max-width: 100%;
    min-width: 0;
    padding: 15px;
  }

  .box-heading {
    font-size: 18px;
  }

  .update-text {
    font-size: 8px;
  }

  .box-details {
    font-size: 12px;
  }

  .content-box {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    min-height: 200px;
    margin-bottom: 10px;
  }

  .content-box.pop-out {
    animation: popOutMobile 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  }

  @keyframes popOutMobile {
    0% {
      transform: scale(0.85) rotate(-3deg);
      opacity: 0.75;
    }
    50% {
      transform: scale(1.08) rotate(3deg);
      opacity: 0.9;
    }
    100% {
      transform: scale(1) rotate(0deg);
      opacity: 1;
    }
  }

  .thumb, .thumb-video-wrapper {
    width: 1.2cm;
    height: 1.2cm;
  }

  .play-button {
    width: 20px;
    height: 20px;
    font-size: 0.7em;
  }

  .back-button {
    padding: 10px 18px;
    font-size: 14px;
  }

  .explore-more {
    padding: 10px 20px;
    font-size: 14px;
  }

  footer {
    padding: 15px;
  }
}
```