* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  height: 100vh;
  background: radial-gradient(circle at 20% 30%, #3a0f2f, transparent 40%),
              radial-gradient(circle at 80% 60%, #0b2a5a, transparent 40%),
              #0a0f1f;
  color: white;
  position: relative;
  overflow: hidden;
}

/* Top Right Logo */
.top-logo {
  position: absolute;
  top: 20px;
  right: 40px;
}

.top-logo img {
  width: 150px;
}

/* Main Container */
.main-container {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
}

.main-logo {
  width: 120px;
  margin-bottom: 15px;
}

.center-content h2 {
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 20px;
}

.description {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Dividers */
.divider {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 25px 0;
}

/* Side Menu */
.side-menu {
  position: absolute;
  bottom: 60px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.side-menu button {
  background-color: #b30000;
  color: white;
  border: none;
  padding: 14px 35px;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  text-align: left;
  width: 160px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.3);
  transition: 0.3s ease;
}

.side-menu button:hover {
  background-color: #d60000;
}

/* Contact Section */
.contact {
  position: absolute;
  bottom: 60px;
  right: 20px;
  text-align: right;
}

.whatsapp-link {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  text-decoration: none;
  color: aliceblue;
  font-weight: bold;
  transition: 0.3s ease;
}

.whatsapp-link img {
  width: 30px;
}

.whatsapp-link:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

.footer-text {
  margin-top: 15px;
  font-size: 14px;
  opacity: 0.8;
}

/* ===== SERVICES MENU ===== */

.services-menu {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(6px);
  transition: 0.3s ease;
  z-index: 1000;
}

.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 120px);
  gap: 25px;
  justify-content: center;
  align-items: center;
  transform: scale(0.9);
  transition: 0.3s ease;
}

.services-menu:not(.hidden) .menu-grid {
  transform: scale(1);
}

.menu-btn {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  border: none;
  font-size: 15px;
  color: white;
  cursor: pointer;
  transition: 0.3s ease;
}

.menu-btn.red {
  background-color: #8b0000;
}

.menu-btn.gray {
  background-color: #666;
}

.menu-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

/* ===== MEDIA MODAL ===== */

/* ===== MEDIA MODAL ===== */

/* ===== MEDIA MODAL ===== */

.media-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  padding: 60px 20px;
}

/* Scrollable vertical container */
#mediaContent {
  width: 100%;
  max-width: 1000px;
  max-height: 85vh;        /* enables vertical scroll area */
  overflow-y: auto;        /* vertical scrolling */
  overflow-x: hidden;
  padding-right: 10px;
}

/* Hide scrollbar (Chrome, Edge, Safari) */
#mediaContent::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar (Firefox) */
#mediaContent {
  scrollbar-width: none;
}

/* Media stacked vertically */
#mediaContent img,
#mediaContent video,
#mediaContent iframe {
  width: 100%;
  height: auto;
  margin-bottom: 25px;
  border-radius: 10px;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 35px;
  cursor: pointer;
  color: white;
}

/* ==============================
   RESPONSIVE DESIGN
   ============================== */

@media (max-width: 1024px) {

  .main-container {
    width: 85%;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 120px);
  }

}

@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  .main-container {
    width: 90%;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-top: 120px;
  }

  .side-menu {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: row;
    gap: 10px;
  }

  .side-menu button {
    width: auto;
    padding: 10px 20px;
    font-size: 14px;
  }

  .top-logo {
    right: 20px;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 100px);
    gap: 15px;
  }

}

@media (max-width: 480px) {

  .menu-grid {
    grid-template-columns: repeat(1, 120px);
  }

  .menu-btn {
    width: 100px;
    height: 100px;
    font-size: 14px;
  }

}

/* =========================
   CONTACT MODAL
   ========================= */

.contact-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3000;
  padding: 20px;
}

.contact-content {
  background: linear-gradient(145deg, #1b1f2f, #111420);
  padding: 40px;
  border-radius: 15px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  color: white;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  animation: fadeIn 0.3s ease;
}

.contact-content h2 {
  margin-bottom: 15px;
  font-weight: 500;
}

.contact-content p {
  font-weight: 300;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Social Icons */
.social-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.social-links img {
  width: 45px;
  transition: 0.3s ease;
  cursor: pointer;
}

.social-links img:hover {
  transform: scale(1.2);
  filter: brightness(1.2);
}

/* Close Button */
.close-contact {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 480px) {
  .contact-content {
    padding: 30px 20px;
  }

  .social-links img {
    width: 38px;
  }
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}