/* ============================================
   HERO SECTION - FIXED LAYOUT
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0806;
  overflow: hidden;
  padding: 120px 0 60px;
}

/* Background Elements */
.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-gradient-1 {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(193, 120, 23, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: float1 15s ease-in-out infinite;
}

.hero-gradient-2 {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 165, 71, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: float2 18s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-50px, 50px); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(50px, -50px); }
}

.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(193, 120, 23, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(193, 120, 23, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
}

/* Container */
.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Left Side - Content */
.hero-left {
  animation: fadeInUp 0.8s ease;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.2rem;
  background: rgba(193, 120, 23, 0.15);
  border: 1px solid rgba(193, 120, 23, 0.3);
  border-radius: 50px;
  color: #e8a547;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero-badge i {
  font-size: 1.1rem;
}

.hero-heading {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #e8a547 60%, #d99a3a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
  max-width: 550px;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-btn-primary,
.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.1rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.hero-btn-primary {
  background: linear-gradient(135deg, #c17817, #e8a547);
  color: white;
  box-shadow: 0 8px 25px rgba(193, 120, 23, 0.35);
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(193, 120, 23, 0.5);
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-stat-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(193, 120, 23, 0.2), rgba(232, 165, 71, 0.2));
  border: 1px solid rgba(193, 120, 23, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e8a547;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.hero-stat-content {
  display: flex;
  flex-direction: column;
}

.hero-stat-content strong {
  font-size: 1.2rem;
  color: white;
  font-weight: 700;
  line-height: 1.2;
}

.hero-stat-content span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.2;
}

/* Right Side - Visual */
.hero-right {
  position: relative;
  animation: fadeInRight 0.8s ease 0.2s backwards;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  backdrop-filter: blur(20px);
}

.hero-glow-effect {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(193, 120, 23, 0.25) 0%, transparent 60%);
  animation: rotate 12s linear infinite;
  pointer-events: none;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-image-wrapper img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.hero-placeholder {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(193, 120, 23, 0.05);
  border-radius: 16px;
}

.hawk-icon {
  font-size: 6rem;
  color: #e8a547;
  opacity: 0.3;
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}

.hero-scroll i {
  font-size: 1rem;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 968px) {
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-left {
    text-align: center;
  }
  
  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-heading {
    font-size: 2.5rem;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 80px 0 40px;
  }
  
  .hero-heading {
    font-size: 2rem;
  }
  
  .hero-text {
    font-size: 1rem;
  }
  
  .hero-btn-primary,
  .hero-btn-secondary {
    padding: 1rem 1.8rem;
    font-size: 0.95rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  
  .hero-stat-item {
    width: 100%;
    justify-content: center;
  }
  
  .hero-scroll {
    display: none;
  }
}
