.custom-navbar {
  background: rgba(10, 10, 30, 0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  transition: 0.4s ease;
}

.custom-navbar.scrolled {
  background: rgba(10, 10, 30, 0.95);
}

/* Logo */
.logo-img {
  height: 50px;
  transition: transform 0.3s ease;
}
.logo-img:hover {
  transform: scale(1.1) rotate(-2deg);
}

/* Nav links */
.navbar-nav .nav-link {
  position: relative;
  font-weight: 500;
  transition: 0.3s;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg,#ff4d4d,#ff94d2);
  transition: 0.3s;
}
.btn-login {
  background: linear-gradient(135deg,#4d79ff,#94b3ff);
  color: #fff;
}
.btn-login:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(77,121,255,0.6);
}
.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.navbar-nav .nav-link:hover {
  color: #ff94d2;
  text-shadow: 0 0 8px #ff94d2;
}

/* Button Register */
.btn-register {
  padding: 8px 22px;
  border-radius: 25px;
  background: linear-gradient(135deg,#ff4d4d,#ff94d2);
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255,77,77,0.5);
}

.btn-register:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(255,77,77,0.6);
}
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/image.webp') center/cover no-repeat;
  filter: brightness(0.35);
  z-index: 0;
  transform: translateZ(0);
  will-change: transform;
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.hero-text {
  flex: 1 1 500px;
  animation: fadeUp 1.2s ease forwards;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
}

.hero-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 500px;
  opacity: 0.9;
}

.btn-primary {
  display: inline-block;
  padding: 16px 36px;
  background: #ff7e5f;
  background: linear-gradient(45deg,#ff7e5f,#feb47b);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.hero-prize {
  flex: 0 0 250px;
  text-align: center;
  margin-top: 30px;
  animation: fadeUp 1.6s ease forwards;
}

.prize-card {
  background: rgba(255,255,255,0.15);
  padding: 40px 20px;
  border-radius: 25px;
  backdrop-filter: blur(12px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  transition: 0.3s;
}

.prize-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.prize-card h3 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.prize-card p {
  font-size: 1rem;
  font-weight: 500;
}

/* --- Animations --- */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* --- Parallax effect on scroll --- */
.hero-bg {
  will-change: transform;
}

/* Cards Section */
.card {
  border: none;
  border-radius: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}
.card--highlight {
  border: 2px solid #0dcaf0;
  background: linear-gradient(135deg, #0dcaf0, #6f42c1);
  color: #fff;
}
.card--highlight h5,
.card--highlight p,
.card--highlight span {
  color: #fff;
}


#utad .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1;
}

/* Position relative for container so overlay works */
#utad .container {
  position: relative;
  z-index: 2;
}

/* Cards */
.package-card {
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.package-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

/* Buttons hover effect */
.btn-hover {
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}
.btn-hover:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(255,255,255,0.5);
}

/* List items checkmark style */
.package-card ul li {
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}
.package-card ul li::before {
  content: "✔";
  color: #28a745;
  margin-right: 8px;
}

/* FAQ */
.accordion-button {
  background: #f1f1f1;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  transition: background 0.3s;
}
.accordion-button:not(.collapsed) {
  background: #0dcaf0;
  color: #fff;
}
.contact-card:hover {
    transform: translateY(-10px);
  }
  .contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(0,123,255,0.5);
  }
  .btn-hover:hover {
    transform: scale(1.05);
    transition: all 0.3s ease;
  }
footer {
    background: rgba(10, 10, 30, 0.85);
    color: #f1f1f1;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 1;
}
.form-label {
  color: #fff;
}
footer a {
    color: #f1f1f1;
    transition: all 0.3s ease;
}

footer a:hover {
    color: #ffd700;
    text-decoration: underline;
}

footer p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

footer .row.mb-4 a {
    display: inline-block;
    padding: 0.3rem 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

footer .row.mb-4 a:hover {
    background: #333;
    color: #ffd700;
}

footer img {
    max-height: 60px;
    transition: transform 0.3s ease;
}

footer img:hover {
    transform: scale(1.1);
}

footer .fw-bold {
    color: #ffd700;
}

footer .text-center {
    text-align: center;
}

footer .row.justify-content-center {
    gap: 15px;
}

@media (max-width: 768px) {
    footer .row.justify-content-center {
        flex-direction: column;
        align-items: center;
    }
    footer img {
        max-height: 50px;
        margin-bottom: 10px;
    }
}
