:root {
    --primary-mova: #E62129;
    --primary-mova-hover: #CC1D24;
    --dark-bg: #101820;
    --white: #ffffff;
}

body.bg-dark-mova {
    background-color: var(--dark-bg);
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    overflow-x: hidden;
}

.font_intro {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 6vw, 4rem);
    line-height: 1.1;
}

.text-mova { color: var(--primary-mova); font-weight: 800; }

.navbar {
    background-color: rgba(16, 24, 32, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 15px 0;
}
.navbar-brand span, .font_intro span { color: var(--primary-mova); }

.text-mova {
    color: #E62129;
}

#affiliateCode {
    letter-spacing: 3px;
    font-family: 'Outfit', sans-serif;
}

.copy-btn-custom {
    transition: all 0.2s ease;
    background: #fff;
    border: 1px solid #eee;
}

.copy-btn-custom:hover {
    background: #f8f9fa;
    transform: scale(1.1);
    border-color: #E62129;
}

.copy-btn-custom:active {
    transform: scale(0.9);
}

@media (max-width: 767px) {
    .border-end-md {
        border-right: none !important;
    }
}

.text-mova {
    color: #E62129;
}

#affiliateCode {
    letter-spacing: 2px;
}

.profile-card {
    background-color: #fdfdfd;
}

/* Animasi hover sederhana pada card */
.profile-card:hover {
    border-color: #E62129 !important;
}

.contact-link {
    transition: color 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: #E62129 !important; /* Berubah menjadi merah Mova saat di-hover */
    text-decoration: underline !important;
}

/* Menghilangkan border pada mobile jika perlu */
@media (max-width: 767px) {
    .border-end-md {
        border-right: none !important;
    }
}


/* --- HERO SECTION --- */
.hero-split {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-image: url('img/banner/background.jpg'); 
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.hero-split::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.4));
    z-index: 1;
}

.content-z { position: relative; z-index: 2; }

.hero-person-img {
    max-height: 80vh;
    border-radius: 30px;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.3));
}

/* --- AGENT PROFILE --- */
.profile-card { background: #fdfdfd; border: 1px solid #eee !important; transition: 0.3s; }
.avatar-box { position: relative; display: inline-block; }
.v-badge { position: absolute; bottom: 5px; right: 5px; background: white; border-radius: 50%; font-size: 22px; }
@media (min-width: 768px) {
    .border-end-md { border-right: 1px solid #eee; }
}

/* --- CALL TO ACTION --- */
.call-to-action {
  background: linear-gradient(rgba(16, 24, 32, 0.8), rgba(16, 24, 32, 0.8)), url('img/banner/imgCTA.png') fixed center center;
  background-size: cover;
  padding: 80px 0;
  color: #fff;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.call-to-action p {
  font-weight: 300;
}

.call-to-action .cta-btn {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
}

.call-to-action .cta-btn:hover {
  background: var(--primary-mova);
  border: 2px solid var(--primary-mova);
}

/* Play Button Styling */
.play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--primary-mova) 50%, rgba(230, 33, 41, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0 auto 30px auto;
}

.play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-iteration-count: infinite;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

@keyframes pulsate-btn {
  0% { transform: scale(0.6, 0.6); opacity: 1; }
  100% { transform: scale(1, 1); opacity: 0; }
}


/* --- BUTTONS --- */
.btn-brand {
    background-color: var(--primary-mova); 
    color: white !important;
    padding: 12px 35px; border-radius: 50px; font-weight: 700;
    border: none; transition: 0.3s;
}
.btn-brand:hover { 
    background-color: var(--primary-mova-hover); 
    transform: scale(1.02); 
    box-shadow: 0 10px 20px rgba(230, 33, 41, 0.4);
}
.btn-outline-dark {
    border-color: #000 !important;
    color: #000 !important;
    font-weight: 600;
}
.btn-outline-dark:hover {
    background-color: #000 !important;
    color: #fff !important;
}

/* --- VIDEO OVERLAY --- */
.video-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}
.video-overlay video { width: 90%; max-width: 800px; border-radius: 15px; }
.close-video {
    position: absolute; top: 30px; right: 30px; background: #E62129;
    border: none; color: white; font-size: 30px; width: 50px; height: 50px;
    border-radius: 50%; cursor: pointer; z-index: 10001;
}

/* --- TRANSISI TUTORIAL --- */
.tutorial-rounded {
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    background-color: #fff;
    box-shadow: 0 -12px 0 0 #fff;
    position: relative;
    z-index: 5;
}

/* --- TESTIMONIALS --- */
.testimonial-wrap {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin: 15px 5px;
}
.testimonial-wrap img { border-radius: 12px; }

/* --- FAQ ACCORDION --- */
.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: var(--primary-mova);
}
.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(230, 33, 41, 0.1);
}
.accordion-button::after {
    filter: grayscale(1) brightness(0);
}

/* --- FLOATING WA --- */
.floating-wa-circle {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 65px; height: 65px;
    background-color: #25D366;
    color: white !important;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; z-index: 9999;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: 0.3s;
    text-decoration: none;
}
.floating-wa-circle:hover { transform: scale(1.1) rotate(10deg); }

/* --- ANIMASI --- */
.naik { opacity: 0; transform: translateY(40px); transition: 0.7s ease-out; }
.tampil { opacity: 1; transform: translateY(0); }

@media (max-width: 991px) {
    .hero-split { text-align: center; padding-top: 100px; }
    .hero-person-img { max-height: 50vh; margin-top: 30px; }
    .hero-split::before { background: rgba(255, 255, 255, 0.50); }
}