/* =============================
   HEELTOE PREMIUM STYLE
   ============================= */

:root {
  --primary: #f5b301; /* accent kuning premium */
  --dark: #0f0f0f;
  --light: #f8f9fa;
  --gray: #b5b5b5;
}

* {
  font-family: 'Poppins', sans-serif;
}

body {
  background: #ffffff;
  overflow-x: hidden;
}

/* =============================
   NAVBAR (GLASS EFFECT)
   ============================= */
.glass-nav {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease-in-out;
}

.navbar .nav-link {
  color: #fff !important;
  margin-left: 15px;
  position: relative;
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -5px;
  background: var(--primary);
  transition: 0.3s;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: 100%;
}

/* =============================
   HERO SECTION
   ============================= */
.hero {
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1525966222134-fcfa99b8ae77') center/cover no-repeat;
  position: relative;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero p {
  color: var(--gray);
}

/* =============================
   SERVICE CARD
   ============================= */
.service-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.service-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.service-card h5 {
  margin-top: 15px;
  font-weight: 600;
}

.service-card p {
  font-size: 14px;
  color: #666;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

/* =============================
   WHY US SECTION
   ============================= */
.why-us {
  background: linear-gradient(135deg, #111, #1c1c1c);
}

.why-us h2 {
  font-weight: 700;
}

.why-us li {
  margin-bottom: 10px;
  font-size: 16px;
}

/* =============================
   CTA SECTION
   ============================= */
.cta {
  background: linear-gradient(135deg, var(--primary), #ffcc33);
  color: #000;
}

.cta h2 {
  font-weight: 700;
}

/* =============================
   BUTTON
   ============================= */
.btn-warning {
  background: var(--primary);
  border: none;
  font-weight: 600;
  color: #000;
}

.btn-warning:hover {
  background: #e0a800;
}

/* =============================
   FOOTER
   ============================= */
footer {
  font-size: 14px;
}

/* =============================
   ANIMATION ENHANCEMENT
   ============================= */
[data-aos] {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============================
   RESPONSIVE
   ============================= */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }
}
/* ======================
   GLOBAL RESET
====================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #f8f9fa;
  color: #212529;
  line-height: 1.6;
}


/* ======================
   HERO SECTIONS
====================== */
.contact-hero,
.about-hero,
.gallery-hero,
.career-hero {
  min-height: 60vh;
  background: linear-gradient(
      rgba(0,0,0,0.6),
      rgba(0,0,0,0.6)
    ),
    url('https://images.unsplash.com/photo-1528701800489-20be3c25b87b') center/cover no-repeat;
}

/* ======================
   CONTACT CARDS
====================== */
.contact-card {
  background: var(--light);
  padding: 30px;
  text-align: center;
  border-radius: 14px;
  box-shadow: var(--soft-shadow);
  transition: all 0.3s ease;
}

.contact-card i {
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--accent);
}

.contact-card:hover {
  transform: translateY(-6px);
}

/* ======================
   FORM
====================== */
.form-control {
  border-radius: 10px;
  padding: 12px 15px;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary);
}

/* ======================
   MAP
====================== */
iframe {
  border-radius: 14px;
}

/* ======================
   FOOTER
====================== */
.footer-premium {
  background: #0f0f0f;
  color: #ccc;
  padding: 50px 0;
}

.footer-premium a {
  color: #ccc;
  margin: 0 10px;
  font-size: 20px;
  transition: color 0.3s ease;
}

.footer-premium a:hover {
  color: var(--accent);
}

/* ======================
   FLOATING WHATSAPP
====================== */
.wa-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
  z-index: 999;
  text-decoration: none;
}

.wa-float i {
  font-size: 26px;
}

/* TEXT */
.wa-text {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  animation: fadeText 4s infinite;
}

/* ANIMATION */
@keyframes fadeText {
  0% {
    opacity: 0;
    transform: translateX(10px);
  }
  20% {
    opacity: 1;
    transform: translateX(0);
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(10px);
  }
}

/* Optional: pause animasi saat hover */
.wa-float:hover .wa-text {
  animation-play-state: paused;
}

/* Mencegah scroll horizontal */
html, body {
  overflow-x: hidden;
}
