body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  background: black;
  color: white;
}

/* GLOBAL LINK FIX */
a, a:visited, a:hover, a:active {
  color: white;
  text-decoration: none;
}

.clickable {
  cursor: pointer;
  color: white;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.nav-inner {
  backdrop-filter: blur(20px);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 20px;
  border-radius: 20px;
  display: flex;
  gap: 20px;
}

.nav-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

/* DROPDOWN */
.dropdown { position: relative; }
.dropbtn { cursor: pointer; }

.dropdown-content {
  display: none;
  position: absolute;
  top: 35px;
  backdrop-filter: blur(20px);
  background: rgba(255,255,255,0.1);
  padding: 10px;
  border-radius: 10px;
}

.dropdown-content.show { display: block; }

/* SPLIT */
.container {
  display: flex;
  min-height: 100vh;
}

/* PANEL */
.panel {
  flex: 1;
  position: relative;
  overflow: hidden;

  border: 4px solid #111;
  box-sizing: border-box;
}

/* BACKGROUND */
.bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;

  opacity: 0;
  transform: scale(1.03);
  filter: blur(10px);
  
  background-repeat: no-repeat;

  transition: 
    opacity 0.5s ease,
    transform 0.6s ease,
    filter 0.5s ease;
}

.bg.loaded {
  opacity: 1;
  transform: scale(1);
  filter: blur(0px);
}

.left .bg {
  background-image: url('/images/1.jpg');
}

.right .bg {
  background-image: url('/images/2.jpg');
}

.panel:hover .bg {
  transform: scale(1.07);
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  transition: 0.25s;
}

.panel:hover .overlay {
  background: rgba(0,0,0,0.25);
}

/* CONTENT */
.content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  backdrop-filter: blur(20px);
  background: rgba(255,255,255,0.1);
  padding: 15px;
  border-radius: 15px;
  transition: transform 0.25s ease;
}

.panel:hover .content {
  transform: translateY(-5px);
}

.right-text {
  right: 30px;
  left: auto;
  text-align: right;
}

/* 🔥 TOAST CONTAINER */
#toast-container {
  position: fixed;
  top: 20px;
  right: 20px;

  display: flex;
  flex-direction: column;
  gap: 10px;

  z-index: 999;
}

/* INDIVIDUAL TOAST */
.toast {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(20px);

  padding: 12px 18px;
  border-radius: 12px;

  opacity: 0;
  transform: translateY(-40px);

  transition: all 0.35s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* FLOATING FOOTER (SHIFTED UP) */
.floating-footer {
  position: fixed;
  bottom: 180px; /* moved UP to avoid overlap */

  left: 50%;
  transform: translateX(-50%);

  width: 90%;
  max-width: 900px;

  backdrop-filter: blur(20px);
  background: rgba(0,0,0,0.6);

  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;

  padding: 15px 20px;

  z-index: 999;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-content span {
  font-size: 16px;
}

/* BUTTON GROUP */
.footer-actions {
  display: flex;
  gap: 10px;
}

/* CALL BUTTON */
.call-btn {
  padding: 8px 16px;
  border-radius: 10px;

  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);

  transition: 0.3s;
}

.call-btn:hover {
  background: rgba(255,255,255,0.25);
}

/* WHATSAPP BUTTON */
.wa-btn {
  padding: 8px 16px;
  border-radius: 10px;

  background: #25D366;
  color: black;
  font-weight: bold;

  transition: 0.3s;
}

.wa-btn:hover {
  background: #1ebe5d;
}

/* MOBILE */
@media (max-width: 768px) {
  .container { flex-direction: column; }
  .panel { height: 50vh; }

  .floating-footer {
    bottom: 100px;
  }
}