/* ============================================
   MODERN HERO SECTION
   Unique hero design without carousel
   ============================================ */

/* ========== HERO SECTION ========== */
.hero2-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #FAFAFA 0%, #FFFFFF 50%, #F5F5F5 100%);
}

/* ========== BACKGROUND SHAPES ========== */
.hero2-background-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.hero2-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.03;
}

.hero2-shape-1 {
  width: 600px;
  height: 600px;
  background: #000000;
  top: -200px;
  right: -100px;
  animation: float 20s ease-in-out infinite;
}

.hero2-shape-2 {
  width: 400px;
  height: 400px;
  background: #000000;
  bottom: -100px;
  left: -100px;
  animation: float 25s ease-in-out infinite reverse;
}

.hero2-shape-3 {
  width: 300px;
  height: 300px;
  background: #000000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float 30s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

/* ========== CONTENT WRAPPER ========== */
.hero2-content-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ========== LEFT SIDE - CONTENT ========== */
.hero2-content {
  animation: fadeInLeft 1s ease;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ========== HERO BADGE ========== */
.hero2-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #000000;
  color: #FFFFFF;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 32px;
  animation: slideDown 0.8s ease 0.3s both;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero2-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;  /* Space between logo and text */
  padding: 10px 20px;
  background: #000000;
  color: #FFFFFF;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 32px;
  animation: slideDown 0.8s ease 0.3s both;
}

.hero2-badge-logo {
  height: 20px;
  width: auto;
  align-items: center;
  object-fit: contain;
  filter: brightness(0) invert(1); /* Ensures logo is white */
}

.hero2-badge-text {
  white-space: nowrap;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* ========== HERO TITLE ========== */
.hero2-title {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.1;
  color: #000000;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero2-title-gradient {
  display: block;
  background: linear-gradient(135deg, #000000 0%, #666666 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========== HERO DESCRIPTION ========== */
.hero2-description {
  font-size: 18px;
  line-height: 1.7;
  color: #666666;
  margin-bottom: 32px;
  max-width: 540px;
  animation: fadeInUp 0.8s ease 0.5s both;
}

/* ========== HERO FEATURES ========== */
.hero2-features {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero2-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #333333;
}

.hero2-feature-item i {
  font-size: 20px;
  color: #000000;
}

/* ========== CTA BUTTONS ========== */
.hero2-cta-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease 0.7s both;
}

.hero2-btn-primary,
.hero2-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 36px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.hero2-btn-primary {
  background: #000000;
  color: #FFFFFF;
}

.hero2-btn-primary:hover {
  background: #F5F5F5;
  border-color: #000000;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.hero2-btn-primary i {
  transition: transform 0.3s ease;
}

.hero2-btn-primary:hover i {
  transform: translateX(4px);
}

.hero2-btn-secondary {
  background: transparent;
  color: #000000;
  border-color: #E0E0E0;
}

.hero2-btn-secondary:hover {
  background: #F5F5F5;
  color: #000000;
  border-color: #000000;
}

/* ========== TRUST BAR ========== */
.hero2-trust-bar {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid #E0E0E0;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.hero2-trust-item {
  display: flex;
  flex-direction: column;
}

.hero2-trust-item strong {
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  line-height: 1;
  margin-bottom: 4px;
}

.hero2-trust-item span {
  font-size: 13px;
  color: #666666;
}

.hero2-trust-divider {
  width: 1px;
  height: 40px;
  background: #E0E0E0;
}

/* ========== RIGHT SIDE - VISUAL ========== */
.hero2-visual {
  position: relative;
  height: 600px;
  animation: fadeInRight 1s ease 0.5s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero2-visual-container {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ========== FLOATING CARDS ========== */
.hero2-floating-card {
  position: absolute;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  animation: floatCard 6s ease-in-out infinite;
}

.card-1 {
  top: 0;
  left: 0;
  width: 70%;
  z-index: 2;
}

.card-2 {
  bottom: 40px;
  right: 0;
  width: 60%;
  z-index: 1;
  animation-delay: -3s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

.hero2-card-mockup {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #E0E0E0;
}

.hero2-mockup-browser {
  width: 100%;
}

.hero2-browser-bar {
  height: 32px;
  background: #F5F5F5;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
  border-bottom: 1px solid #E0E0E0;
}

.hero2-browser-bar .hero2-dot1 {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: red;
}

.hero2-browser-bar .hero2-dot2 {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: orange;
}

.hero2-browser-bar .hero2-dot3 {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: green;
}

.hero2-browser-content img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========== FLOATING BADGES ========== */
.hero2-floating-stats {
  position: absolute;
  top: 120px;
  right: -20px;
  background: #FFFFFF;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 3;
  animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero2-stats-icon {
  width: 48px;
  height: 48px;
  background: #000000;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 24px;
}

.hero2-stats-content strong {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  line-height: 1;
}

.hero2-stats-content span {
  display: block;
  font-size: 12px;
  color: #666666;
  margin-top: 4px;
}

.hero2-floating-review {
  position: absolute;
  bottom: 120px;
  left: -40px;
  background: #FFFFFF;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 3;
  max-width: 200px;
  animation: floatBadge 4s ease-in-out infinite 2s;
}

.hero2-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 8px;
}

.hero2-stars i {
  color: #FFB800;
  font-size: 14px;
}

.hero2-review-text {
  font-size: 13px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 4px;
}

.hero2-review-author {
  font-size: 12px;
  color: #666666;
}

/* ========== GRADIENT CIRCLE ========== */
.hero2-gradient-circle {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (max-width: 991px) {
  .hero2-floating-stats,
  .hero2-floating-review {
    display: none;
  }
}

/* ========== SCROLL INDICATOR ========== */
.hero2-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #666666;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: fadeIn 1s ease 1.5s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero2-mouse {
  width: 24px;
  height: 36px;
  border: 2px solid #666666;
  border-radius: 12px;
  position: relative;
}

.hero2-wheel {
  width: 4px;
  height: 8px;
  background: #666666;
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s ease infinite;
}

@keyframes scroll {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 1199px) {
  .hero2-title {
    font-size: 56px;
  }

  .hero2-content-wrapper {
    gap: 60px;
  }
}

@media (max-width: 991px) {
  .hero2-section {
    min-height: auto;
    padding: 80px 0 60px;
  }

  .hero2-content-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero2-title {
    font-size: 48px;
  }

  .hero2-visual {
    height: 500px;
  }

  .hero2-floating-stats,
  .hero2-floating-review {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin: 20px auto;
  }
}

@media (max-width: 767px) {
  .hero2-section {
    padding: 60px 0 40px;
  }

  .hero2-title {
    font-size: 36px;
  }

  .hero2-description {
    font-size: 16px;
  }

  .hero2-features {
    flex-direction: column;
    gap: 16px;
  }

  .hero2-cta-buttons {
    flex-direction: column;
  }

  .hero2-btn-primary,
  .hero2-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero2-trust-bar {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .hero2-trust-divider {
    display: none;
  }

  .hero2-visual {
    height: 400px;
  }

  .hero2-scroll-indicator {
    display: none;
  }
}

@media (max-width: 575px) {
  .hero2-title {
    font-size: 32px;
  }

  .hero2-btn-primary,
  .hero2-btn-secondary {
    padding: 14px 24px;
    font-size: 15px;
  }

  .hero2-trust-item strong {
    font-size: 24px;
  }
}