/* Section container */
.tourism-section {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
}

/* Rotating background */
.rotating-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 800px;
    height: 800px;
    background: url('../img/vector/abstract-shapes.svg') no-repeat center/contain;
    animation: rotate360 60s linear infinite;
    opacity: 0.05;
    z-index: 0;
}

@keyframes rotate360 {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Title underline */
.title-with-line {
  position: relative;
  display: inline-block;
  font-weight: bold;
  margin-bottom: 30px;
}
    .title-with-line::after {
        content: "";
        display: block;
        width: 60px;
        height: 4px;
        background: #b48b44;
        margin-top: 5px;
    }

/* Custom points with dots */
.custom-points {
  list-style: none;
  padding: 0;
}
.custom-points li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 15px;
}
    .custom-points li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 2px;
        width: 20px;
        height: 20px;
        background: #009DFF;
        border: 6px solid #6BCEFF;
        border-radius: 50%;
    }

/* Highlight wrapper (handles accents) */
.highlight-wrapper {
  position: relative;
  /*display: inline-block;*/
}
    .highlight-wrapper::before,
    .highlight-wrapper::after {
        content: "";
        position: absolute;
        width: 150px;
        height: 150px;
        background: #6BCEFF;
        border-radius: 18px;
        z-index: -1;
    }
.highlight-wrapper::before {
  top: -15px;
  left: -15px;
}
.highlight-wrapper::after {
  bottom: -15px;
  right: -15px;
}

/* Highlight box content */
.highlight-box {
  position: relative;
  padding: 10px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  z-index: 1;
}

/* Avatar size */
.avatar-xl {
  width: 72px;
  height: 72px;
  font-size: 1rem;
}

/* ------------------- Responsive ------------------- */
@media (max-width: 768px) {
  .rotating-bg {
    width: 300px;
    height: 300px;
    right: -50px;
    top: 50px;
  }
  .title-with-line {
    text-align: center;
  }
  .custom-points {
    text-align: left;
  }
  .highlight-wrapper {
    display: block;
    margin: 30px auto 0;
  }
  .highlight-wrapper::before,
  .highlight-wrapper::after {
    width: 100px;
    height: 100px;
  }
  .highlight-box {
    text-align: center;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .custom-points li {
    font-size: 14px;
    padding-left: 32px;
  }
  .custom-points li::before {
    width: 16px;
    height: 16px;
    border: 4px solid #ffedc0;
    top: 3px;
  }
  .rotating-bg {
    width: 200px;
    height: 200px;
  }
}
