/* Hero Section Widget Styles */
.hero-section {
  background: #0a1e3f;
  background: var(--primary-color, #0a1e3f);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

/* Widget Wrapper Styles */
.aki-widget-wrapper {
  width: 100%;
  display: block;
  visibility: visible;
  opacity: 1;
}

/* Ensure hero widget content is visible */
.aki-widget-wrapper .hero-section {
  display: flex;
  visibility: visible;
  opacity: 1;
}

.aki-widget-wrapper .hero-container {
  display: flex;
  visibility: visible;
  opacity: 1;
}

.aki-widget-wrapper .hero-content {
  display: flex;
  visibility: visible;
  opacity: 1;
}

.aki-widget-wrapper .hero-text {
  display: flex;
  visibility: visible;
  opacity: 1;
}

.aki-widget-wrapper .hero-title,
.aki-widget-wrapper .hero-subtitle {
  display: block;
  visibility: visible;
  opacity: 1;
  color: #ffffff;
}

.hero-container {
  padding: 80px 0 80px 100px;
  display: flex;
  align-items: center;
  gap: 60px;
  flex: 1;
  min-width: 550px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 64px;
  flex: 1;
  max-width: 770px;
}

.social-icons {
  display: flex;
  gap: 40px;
  align-items: center;
}

.social-icon {
  width: auto;
  height: 20px;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero-title {
  color: #ffffff;
  color: var(--text-light, #ffffff);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-subtitle {
  color: #ffffff;
  color: var(--text-light, #ffffff);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
}

.hero-image {
  flex-shrink: 0;
  width: 421.33px;
  height: 423px;
  object-fit: cover;
  position: relative;
}

.hero-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    270deg,
    rgba(10, 30, 63, 0) 0%,
    rgba(10, 30, 63, 1) 100%
  );
}

.hero-decoration {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 507px;
  height: 505px;
}

.decoration-rect {
  position: absolute;
  background: #d9d9d9;
  border-radius: 0;
}

.decoration-rect-1 {
  width: 168px;
  height: 168px;
  opacity: 0.07;
  left: 0;
  top: 0;
}

.decoration-rect-2 {
  width: 169px;
  height: 169px;
  opacity: 0.03;
  left: 168px;
  top: 166px;
}

.decoration-rect-3 {
  width: 170px;
  height: 170px;
  opacity: 0.1;
  left: 337px;
  top: 335px;
}

/* Hero Widget Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    padding: 60px 50px;
  }
}

@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    padding: 40px 20px;
    gap: 40px;
  }

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

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

  .hero-image {
    width: 100%;
    max-width: 400px;
  }
}

/* AKI Hero Section Styles (from widget) */
.aki-hero-section {
  background: #0a1e3f;
  position: relative;
  min-width: 320px;
  height: 450px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-background {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-decorative-elements {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.decorative-element {
  position: absolute;
  background: #d9d9d9;
  border-radius: 8px;
}

.decorative-element.element-1 {
  width: 168px;
  height: 168px;
  left: 0px;
  top: 0px;
  opacity: 0.07;
}

.decorative-element.element-2 {
  width: 169px;
  height: 169px;
  left: 125px;
  top: 175px;
  opacity: 0.03;
}

.decorative-element.element-3 {
  width: 170px;
  height: 170px;
  left: 290px;
  top: 345px;
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 90px;
}

.hero-text-content {
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: flex-start;
  max-width: 100%;
  width: 100%;
}

.hero-social-icons {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
}

.social-icon img {
  width: 28px;
  height: 20px;
  object-fit: contain;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero-title {
  color: #ffffff;
  text-align: left;
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.hero-subtitle {
  color: #ffffff;
  text-align: left;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 500;
  margin: 0;
  line-height: 1.3;
}

/* Responsive Design for AKI Hero Section */
@media (max-width: 1200px) {
  .aki-hero-section {
    height: 500px;
  }

  .hero-content {
    padding: 0 50px;
  }

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

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

  .decorative-element.element-1 {
    width: 120px;
    height: 120px;
    left: 30px;
    top: 80px;
  }

  .decorative-element.element-2 {
    width: 120px;
    height: 120px;
    left: 70px;
    top: 150px;
  }

  .decorative-element.element-3 {
    width: 120px;
    height: 120px;
    left: 100px;
    top: 220px;
  }
}

@media (max-width: 768px) {
  .aki-hero-section {
    height: 400px;
    flex-direction: column;
  }

  .hero-background {
    width: 100%;
    height: 100%;
    background-position: center;
  }

  .hero-decorative-elements {
    width: 100%;
    height: 100%;
  }

  .decorative-element.element-1 {
    width: 80px;
    height: 80px;
    left: 20px;
    top: 50px;
  }

  .decorative-element.element-2 {
    width: 80px;
    height: 80px;
    left: 50px;
    top: 100px;
  }

  .decorative-element.element-3 {
    width: 80px;
    height: 80px;
    left: 80px;
    top: 150px;
  }

  .hero-content {
    padding: 0 30px;
    justify-content: center;
    text-align: center;
  }

  .hero-text-content {
    width: 100%;
    align-items: center;
    gap: 40px;
  }

  .hero-title {
    font-size: 28px;
  }

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