/*--------------------------------------------------------------
# PosluTaksi - Light & Minimal Premium Styles
--------------------------------------------------------------*/

:root {
  /* Light & Airy Colors */
  --primary-color: #F4D03F;
  --primary-light: #FFF9E6;
  --secondary-color: #2c3e50;
  --accent-color: #FF6B35;
  --accent-light: #FFE5DC;
  --success-color: #2ECC71;
  --text-dark: #2c3e50;
  --text-medium: #5a6c7d;
  --text-light: #95a5a6;
  --white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-lighter: #ffffff;

  /* Soft Gradients */
  --gradient-primary: linear-gradient(135deg, #F4D03F 0%, #FFB84D 100%);
  --gradient-soft: linear-gradient(135deg, rgba(244, 208, 63, 0.05) 0%, rgba(255, 184, 77, 0.05) 100%);
  --gradient-overlay: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);

  /* Soft Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.10);
  --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --transition-fast: all 0.2s ease;
  --transition-normal: all 0.3s ease;
  --transition-slow: all 0.5s ease;
}

/*--------------------------------------------------------------
# Video Background Hero - Light Version
--------------------------------------------------------------*/
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.8;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(248, 249, 250, 0.45) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

/* Gradient Text - Softer */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* Hero Typography */
.hero-title {
  font-size: clamp(48px, 10vw, 80px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(244, 208, 63, 0.2);
}

.hero-subtitle {
  font-size: clamp(20px, 4vw, 32px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  text-shadow: none;
}

.hero-tagline {
  font-size: clamp(24px, 5vw, 42px);
  font-weight: 800;
  color: var(--primary-color);
  text-shadow: 0 2px 8px rgba(244, 208, 63, 0.15);
}

/*--------------------------------------------------------------
# Premium Buttons - Light Version
--------------------------------------------------------------*/
.btn-premium {
  display: inline-block;
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  cursor: pointer;
}

.btn-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transition: var(--transition-normal);
  z-index: -1;
}

.btn-premium:hover::before {
  left: 100%;
}

.btn-primary-gradient {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(244, 208, 63, 0.3);
}

.btn-primary-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(244, 208, 63, 0.4);
}

.btn-outline-white {
  background: var(--white);
  color: var(--text-dark);
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn-outline-white:hover {
  background: var(--primary-light);
  color: var(--text-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(244, 208, 63, 0.2);
}

/*--------------------------------------------------------------
# Scroll Indicator
--------------------------------------------------------------*/
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
}

.scroll-indicator i {
  font-size: 32px;
  color: var(--primary-color);
  opacity: 0.8;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/*--------------------------------------------------------------
# Trust Badges - Light Version
--------------------------------------------------------------*/
.trust-badges {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--white);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  border: 2px solid var(--primary-light);
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.trust-badge:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.trust-badge i {
  font-size: 24px;
  color: var(--primary-color);
}

.trust-badge span {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 14px;
}

/*--------------------------------------------------------------
# FAQ Section - Light Version
--------------------------------------------------------------*/
.faq-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.faq-item {
  background: var(--white);
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  border: 1px solid rgba(244, 208, 63, 0.1);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-dark);
  transition: var(--transition-fast);
  background: var(--white);
}

.faq-question:hover {
  background: var(--primary-light);
}

.faq-question i {
  font-size: 24px;
  color: var(--primary-color);
  transition: var(--transition-fast);
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: var(--white);
}

.faq-answer.active {
  padding: 25px 30px;
  max-height: 500px;
}

.faq-answer p {
  color: var(--text-medium);
  line-height: 1.8;
  margin: 0;
}

/*--------------------------------------------------------------
# Glassmorphism Cards - Light Version
--------------------------------------------------------------*/
.glass-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(244, 208, 63, 0.2);
  padding: 40px;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.glass-card:hover {
  background: var(--white);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

/*--------------------------------------------------------------
# Sticky Header - Light Version
--------------------------------------------------------------*/
#header.header-scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  padding: 10px 0;
}

#header.header-scrolled .logo img {
  max-height: 45px !important;
  transition: var(--transition-normal);
}

/*--------------------------------------------------------------
# Section Backgrounds
--------------------------------------------------------------*/
.section-bg {
  background: var(--bg-light);
}

.about {
  background: var(--white);
  padding: 80px 0;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .hero-video {
    display: none;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-tagline {
    font-size: 24px;
  }

  .btn-premium {
    padding: 14px 30px;
    font-size: 14px;
  }

  .trust-badges {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Hover Effects & Micro-interactions
--------------------------------------------------------------*/
.hover-lift {
  transition: var(--transition-normal);
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.hover-glow {
  transition: var(--transition-normal);
}

.hover-glow:hover {
  box-shadow: 0 0 30px rgba(244, 208, 63, 0.3);
}

.hover-scale {
  transition: var(--transition-normal);
}

.hover-scale:hover {
  transform: scale(1.05);
}

/*--------------------------------------------------------------
# Animated Video Placeholder
--------------------------------------------------------------*/
.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #F4D03F 0%, #FFB84D 25%, #FF6B35 50%, #F4D03F 75%, #FFB84D 100%);
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
  opacity: 0.1;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}