.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 100px 0 50px;
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(241, 90, 34, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
  z-index: 0;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  gap: 40px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  padding-right: 20px;
}

.hero-content h1 {
  font-size: 56px;
  margin-bottom: 15px;
  line-height: 1.1;
  letter-spacing: -0.5px;
  background: linear-gradient(90deg, var(--light-text) 0%, var(--primary-color) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 26px;
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  background: linear-gradient(90deg, var(--secondary-color), #80ffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.light-theme .hero-subtitle {
  background: linear-gradient(90deg, #0088a9, #006699);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}

.hero-description {
  background: rgba(0, 0, 0, 0.2);
  border-left: 3px solid var(--primary-color);
  padding: 20px 25px;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
}

.hero-description::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(241, 90, 34, 0.1) 0%, transparent 70%);
  z-index: -1;
}

.light-theme .hero-description {
  background: rgba(241, 90, 34, 0.1);
  border-left: 3px solid var(--primary-color);
}

.hero-description p {
  color: var(--gray-text);
  font-size: 18px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.hero-buttons .btn {
  min-width: 160px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 12px 28px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-primary {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-buttons .btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
  z-index: -1;
}

.hero-buttons .btn-primary:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero-image {
  flex: 1;
  position: relative;
  height: 560px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.img-effect {
  position: relative;
  width: 100%;
  padding-top: 50%;
  margin: 2rem auto;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.img-effect > .block {
  position: absolute;
  height: 100%;
  width: 30%;
  perspective: 1000px;
  transition: all 0.8s ease;
  transform-style: preserve-3d;
}

.img-effect > .block:nth-of-type(1) {
  height: 80%;
  top: 10%;
  left: 17%;
  width: 15%;
  animation: float 8s ease-in-out infinite;
}

.img-effect > .block:nth-of-type(2) {
  top: 0;
  left: 35%;
  animation: float 7s ease-in-out infinite 1s;
}

.img-effect > .block:nth-of-type(3) {
  height: 80%;
  top: 10%;
  left: 64%;
  width: 15%;
  animation: float 9s ease-in-out infinite 0.5s;
}

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

.img-effect > .block > .side {
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("https://i.ibb.co/G4rp7x8C/FB-IMG-1742695455230.jpg");
  background-size: auto 100%;
  box-shadow: -1vw 0.5vw 1.5vw rgba(0, 0, 0, 0.4);
  transition: all 0.5s ease;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.img-effect > .block > .side.-main {
  height: 100%;
  width: 100%;
  transform: rotateY(30deg);
  transform-origin: 0 50%;
  filter: brightness(1.1) contrast(1.1);
}

.img-effect > .block > .side.-left {
  height: 100%;
  width: 20%;
  transform-origin: 0 50%;
  transform: rotateY(-60deg) translateX(-100%);
  filter: brightness(40%);
}

.img-effect > .block:nth-of-type(1) > .side.-main {
  background-position: 4% 50%;
  background-size: auto 130%;
}

.img-effect > .block:nth-of-type(1) > .side.-left {
  background-position: 0 50%;
  background-size: auto 130%;
}

.img-effect > .block:nth-of-type(2) > .side.-main {
  background-position: 50% 0;
  filter: brightness(1.2) saturate(1.1);
}

.img-effect > .block:nth-of-type(2) > .side.-left {
  background-position: 28.5% 0;
}

.img-effect > .block:nth-of-type(3) > .side.-main {
  background-position: 96% 50%;
  background-size: auto 130%;
  filter: brightness(1.1) contrast(1.05);
}

.img-effect > .block:nth-of-type(3) > .side.-left {
  background-position: 78% 50%;
  background-size: auto 130%;
}

.hero-highlights {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 30px;
  z-index: 2;
}

.highlight-item {
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  padding: 15px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: rgba(241, 90, 34, 0.3);
}

.light-theme .highlight-item {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.highlight-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
  border-radius: 50%;
  color: white;
}

.highlight-text {
  flex: 1;
}

.highlight-text h3 {
  font-size: 14px;
  margin-bottom: 3px;
  color: var(--light-text);
}

.highlight-text p {
  font-size: 12px;
  color: var(--gray-text);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
  animation-delay: 2s;
  z-index: 10;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid var(--light-text);
  border-radius: 20px;
  position: relative;
  margin-bottom: 10px;
}

.wheel {
  width: 6px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 3px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    top: 10px;
    opacity: 1;
  }
  100% {
    top: 30px;
    opacity: 0;
  }
}

.arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.arrow span {
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid var(--light-text);
  border-right: 2px solid var(--light-text);
  transform: rotate(45deg);
  margin: -5px;
  animation: arrow 2s infinite;
}

.arrow span:nth-child(2) {
  animation-delay: 0.2s;
}

@keyframes arrow {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.hero-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
  padding: 10px 20px;
  border-radius: 30px;
  color: white;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: pulse 2s infinite;
  z-index: 10;
}

.hero-badge span {
  background: rgba(255, 255, 255, 0.2);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(241, 90, 34, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(241, 90, 34, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(241, 90, 34, 0);
  }
}

@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .hero-content {
    margin-bottom: 30px;
    max-width: 100%;
    padding-right: 0;
  }

  .hero-description {
    max-width: 600px;
    margin: 0 auto 20px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    width: 100%;
    max-width: 550px;
    height: 450px;
  }

  .img-effect {
    margin: 1rem auto;
  }

  .hero-highlights {
    position: relative;
    bottom: auto;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .hero-description p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 250px;
    margin: 20px auto 0;
  }

  .hero-image {
    height: 380px;
  }

  .img-effect {
    padding-top: 70%;
  }

  .hero-highlights {
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-top: 30px;
  }

  .highlight-item {
    width: 100%;
    max-width: 300px;
  }

  .hero-badge {
    top: 20px;
    right: 20px;
    padding: 8px 15px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-description {
    padding: 15px 20px;
  }

  .hero-image {
    height: 320px;
  }

  .img-effect {
    padding-top: 100%;
  }

  .img-effect > .block:nth-of-type(1) {
    left: 10%;
  }

  .img-effect > .block:nth-of-type(3) {
    left: 70%;
  }
}

