/* Hero Section Styles */

/* Hero Section */
.hero-section {
  padding: 60px 0px 80px 0px;
  background:
    linear-gradient(135deg, rgba(15, 50, 80, 0.7) 0%, rgba(249, 182, 16, 0.3) 50%, rgba(15, 50, 80, 0.8) 100%),
    url('../images/png/hero-bg-img.png') center/cover no-repeat;
  background-size: 100% 100%;
}

.hero-content {
  z-index: 2;
}

/* Hero Badge */
.hero-badge {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(249, 182, 16, 0.2);
  transition: all 0.3s ease;
}

.hero-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.badge-dot {
  width: 10px;
  height: 10px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

/* Hero Typography */
.hero-main-title {
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  line-height: 1.2;
  font-size:  clamp(1.875rem, 1.6218rem + 1.2658vw, 3.125rem);
}

.hero-section-row {
  justify-content: space-between;
}

.hero-gradient-text {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--linearGradient2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.hero-tagline {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  max-width: 95%;
}

/* Hero Stats Card */
.hero-stats-card {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(249, 182, 16, 0.1);
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.hero-stats-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(249, 182, 16, 0.25);
  border-color: var(--themeColor);
}

.stat-item {
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-3px);
}

.stat-item:hover .stat-icon i {
  transform: scale(1.2);
  color: var(--linearGradient2) !important;
}

.stat-icon i {
  transition: all 0.3s ease;
}

.stat-number {
  line-height: 1;
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
  color: var(--themeColor) !important;
}

.stat-label {
  line-height: 1.2;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-label {
  color: var(--primaryColor) !important;
}

/* Hero Primary Button */
.hero-primary-btn {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--linearGradient2) 100%);
  color: var(--whiteColor);
  padding:  clamp(0.625rem, 0.5744rem + 0.2532vw, 0.875rem)  clamp(1.25rem, 1.1487rem + 0.5063vw, 1.75rem);
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(249, 182, 16, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: primaryBtnFloat 3s ease-in-out infinite;
}

@keyframes primaryBtnFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-3px); }
}

.hero-primary-btn:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 40px rgba(249, 182, 16, 0.6);
}

.arrow-circle {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: arrowRotate 2s linear infinite;
}

@keyframes arrowRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hero-primary-btn:hover .arrow-circle {
  background: rgba(255, 255, 255, 0.3);
  animation-duration: 0.5s;
}

.btn-bg-animation {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmerEffect 2.5s infinite;
  z-index: 1;
}

@keyframes shimmerEffect {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Hero Rent Button */
.hero-rent-btn {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(249, 182, 16, 0.3);
  padding: clamp(0.625rem, 0.5744rem + 0.2532vw, 0.875rem)  clamp(1.25rem, 1.1994rem + 0.2532vw, 1.5rem);
  border-radius: 60px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: rentBtnBreath 4s ease-in-out infinite;
  color: var(--primaryColor);
}

@keyframes rentBtnBreath {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }
  50% { 
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(249, 182, 16, 0.2);
  }
}

.hero-rent-btn:hover {
  background: linear-gradient(135deg, var(--whiteColor) 0%, rgba(249, 182, 16, 0.1) 100%);
  border-color: var(--themeColor);
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 60px rgba(249, 182, 16, 0.3);
}

.rent-icon-container {
  position: relative;
}

.rent-main-icon {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--linearGradient2) 100%);
  border-radius: 50%;
  color: var(--whiteColor);
  position: relative;
  z-index: 3;
}

@keyframes iconSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.rent-orbit-ring, .rent-orbit-ring-2 {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 2px solid transparent;
  border-top: 2px solid rgba(249, 182, 16, 0.4);
  border-radius: 50%;
  animation: orbitRotate 3s linear infinite;
}

.rent-orbit-ring {
  width: clamp(2.1875rem, 2.1242rem + 0.3165vw, 2.5rem);
  height: clamp(2.1875rem, 2.1242rem + 0.3165vw, 2.5rem);
  transform: translate(-50%, -50%);
}

.rent-orbit-ring-2 {
  width: clamp(2.5rem, 2.3734rem + 0.6329vw, 3.125rem);
  height: clamp(2.5rem, 2.3734rem + 0.6329vw, 3.125rem);
  transform: translate(-50%, -50%);
  animation-direction: reverse;
  animation-duration: 4s;
  border-top-color: rgba(249, 182, 16, 0.2);
}

@keyframes orbitRotate {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.rent-text-content {
  flex: 1;
}

.rent-label {
  color: rgba(15, 50, 80, 0.6);
  line-height: 1;
  margin-bottom: 2px;
  animation: labelFade 3s ease-in-out infinite;
}

@keyframes labelFade {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.rent-title {
  color: var(--primaryColor);
  line-height: 1.2;
  transition: all 0.3s ease;
}

.hero-rent-btn:hover .rent-title {
  color: #fff;
}

.rent-arrow-indicator {
  width: clamp(1.25rem, 1.1234rem + 0.6329vw, 1.875rem);
  height: clamp(1.25rem, 1.1234rem + 0.6329vw, 1.875rem);
  background: rgba(249, 182, 16, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--themeColor);
  animation: arrowBounce 2s ease-in-out infinite;
  transition: all 0.3s ease;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateX(0px); }
  50% { transform: translateX(3px); }
}

.hero-rent-btn:hover .rent-arrow-indicator {
  background: var(--themeColor);
  color: var(--whiteColor);
  transform: translateX(5px);
}

.hero-rent-btn:hover .rent-main-icon {
  animation-duration: 1s;
}

.secondary-info:hover .play-icon {
  background: rgba(249, 182, 16, 0.3) !important;
  transform: scale(1.1);
}


/* Responsive Design */
@media (max-width: 767px) {
  .hero-tagline {
    max-width: 100%;
  }
  
  .hero-stats-card {
    margin: 0 auto;
  }
  
  .hero-action-area {
    gap: 1rem !important;
  }
  
  .hero-primary-btn, .hero-rent-btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-card-image {
    width: clamp(250px, 80vw, 350px);
    height: clamp(180px, 60vw, 250px);
  }
}

@media (max-width:575px) {
  .hero-car-img-mobile{
    display: none;
  }
}